mirror of
https://github.com/arendst/Tasmota.git
synced 2026-06-23 18:58:47 -04:00
Fix addressing & remove compile script
- Fixed adderssing to start at 1 vs 0 - Removed my compile script
This commit is contained in:
@@ -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++) {
|
||||
|
||||
Reference in New Issue
Block a user