Merge pull request #6734 from effelle/development

Update sonoff.ino
This commit is contained in:
Theo Arends 2019-10-24 18:48:50 +02:00 committed by GitHub
commit 411cbb8695
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -539,7 +539,7 @@ bool SendKey(uint32_t key, uint32_t device, uint32_t state)
}
int32_t payload_save = XdrvMailbox.payload;
XdrvMailbox.payload = key << 16 | state << 8 | device;
XsnsCall(FUNC_ANY_KEY);
XdrvCall(FUNC_ANY_KEY);
XdrvMailbox.payload = payload_save;
return result;
}