mirror of https://github.com/arendst/Tasmota.git
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
|
||||
// PS: This should ideally be done through the Tasmota mailbox
|
||||
if (at[0] == '-') {
|
||||
uint32_t idx = atoi(&at[1]);
|
||||
uint32_t idx = atoi(&at[1]) - 1;
|
||||
at = strchr(at, ' ');
|
||||
|
||||
if (!at++) {
|
||||
|
|
Loading…
Reference in New Issue