ccervo1 The sensor data frame has been updated to Version 0x02 (the byte you observed as 0x02 is the protocol version). The structure is as follows:
Frame format:
Len + Tag + Company + Ver + Temp + Humidity
Detailed breakdown:
Len (1 byte)
Tag (1 byte): 0xFF (vendor specified field)
Company (2 bytes): 0xFFF0
Ver (1 byte): 0x02 (protocol version)
Temp (2 bytes): first byte = integer part (signed), second byte = fractional part; unit: °C
Humidity (2 bytes): first byte = integer part, second byte = fractional part; unit: %
Example full frame:
0x08 0xFF 0xF0 0xFF 0x02 [Temp] [Humidity]
No official document is available yet, but the format above has been confirmed by our R&D team.