Added some byte definitions to WiZmote ESP-NOW message

This commit is contained in:
ChuckMash 2024-08-22 20:24:03 -07:00 committed by GitHub
parent 0bbd6b7c4b
commit dd52124765
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,10 +25,10 @@
typedef struct WizMoteMessageStructure { typedef struct WizMoteMessageStructure {
uint8_t program; // 0x91 for ON button, 0x81 for all others uint8_t program; // 0x91 for ON button, 0x81 for all others
uint8_t seq[4]; // Incremetal sequence number 32 bit unsigned integer LSB first uint8_t seq[4]; // Incremetal sequence number 32 bit unsigned integer LSB first
uint8_t byte5; // Unknown (seen 0x20) uint8_t dt1; // Button Data Type (0x32)
uint8_t button; // Identifies which button is being pressed uint8_t button; // Identifies which button is being pressed
uint8_t byte8; // Unknown, but always 0x01 uint8_t dt2; // Battery Level Data Type (0x01)
uint8_t byte9; // Unnkown, but always 0x64 uint8_t batLevel; // Battery Level 0-100
uint8_t byte10; // Unknown, maybe checksum uint8_t byte10; // Unknown, maybe checksum
uint8_t byte11; // Unknown, maybe checksum uint8_t byte11; // Unknown, maybe checksum