User`s guide

- 10 -
Below are instructions on how to decode the data for five common sensor
types:
Temperature
DATA_0: INT16, SIGNED. Data is recorded in Celsius. Divide
data by 10 to get degrees Celsius out to one decimal point.
Example: Data=271. 271/10 = 27.1°C
DATA_1, DATA_2, DATA_3 are not used.
Water
DATA_0: UINT16, UNSIGNED. Data is recorded as 0 for no
water present and 1 for water present in default operation.
DATA_1, DATA_2, DATA_3 are not used.
Open / Closed
DATA_0: UINT16, UNSIGNED. Data is recorded as 1 for
magnet present and 0 for magnet absent in default operation.
DATA_1, DATA_2, DATA_3 are not used.
PIR
DATA_0: UINT16, UNSIGNED. Data is recorded as 1 for
motion detection and 0 for no motion.
DATA_1, DATA_2, DATA_3 are not used.
Humidity
DATA_0 is Temperature Data, INT16, SIGNED. DATA_1 is
Humidity Data. INT16, SIGNED.
To convert the humidity and temperature to standard units,
apply the following math:
Temperature_C = (DATA_0 ÷ 100)
RH_% = (DATA_1 ÷ 100)
Example: DATA_0: 2374/100 = 23.74°C
DATA_1: 5289/100 = 52.89 %RH
DATA_2, DATA_3 are not used.