mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-26 20:26:32 +00:00
Fix addressing & remove compile script
- Fixed adderssing to start at 1 vs 0 - Removed my compile script
This commit is contained in:
parent
d8b8636a44
commit
8fda70643b
@ -71,7 +71,7 @@ struct EZOStruct {
|
|||||||
// Figure out if we're trying to address a specific device
|
// Figure out if we're trying to address a specific device
|
||||||
// PS: This should ideally be done through the Tasmota mailbox
|
// PS: This should ideally be done through the Tasmota mailbox
|
||||||
if (at[0] == '-') {
|
if (at[0] == '-') {
|
||||||
uint32_t idx = atoi(&at[1]);
|
uint32_t idx = atoi(&at[1]) - 1;
|
||||||
at = strchr(at, ' ');
|
at = strchr(at, ' ');
|
||||||
|
|
||||||
if (!at++) {
|
if (!at++) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user