- send firmware information in DEVICE message - introduced new version of VALUE message (sending UID now instead of timestamp) - make SENDSTATS and RECVSTATS messages also send UID instead of timestamp
19 lines
368 B
NASM
19 lines
368 B
NASM
|
|
|
|
|
|
.equ AQHOME_VALUETYPE_TEMP = 1
|
|
.equ AQHOME_VALUETYPE_HUMIDITY = 2
|
|
|
|
|
|
; module type ids for firmware header
|
|
.equ AQHOME_FW_MODULE_TIMER = 1
|
|
.equ AQHOME_FW_MODULE_COM = 2
|
|
.equ AQHOME_FW_MODULE_LED = 3
|
|
.equ AQHOME_FW_MODULE_TWIMASTER = 4
|
|
.equ AQHOME_FW_MODULE_LCD = 5
|
|
.equ AQHOME_FW_MODULE_SI7021 = 6
|
|
|
|
|
|
.equ AQHOME_FW_TYPE_ATT84_TEMP1 = 1
|
|
|