Sensor mode & hiding data from the display
In this page you will learn how to show/hide specific data from the display of the device. Even though the data is hidden from the display, you still receive it in the keepalive.
Last updated
In this page you will learn how to show/hide specific data from the display of the device. Even though the data is hidden from the display, you still receive it in the keepalive.
Last updated
In some cases you may want to hide the target temperature from the device and show only the current temperature. See image below how the interface looks when the sensor mode is turned on. Clicking the buttons on the device does not do anything in this mode.
Byte index | Hex value β Meaning |
0 | 39 β The command code. |
1 | 00 β Turn off the sensor mode; The default state is off. 01 β Turn on the sensor mode. |
Example downlink: 0x3901 β Turn on the sensor mode
Byte index | Hex value β Meaning |
0 | 40 β The command code. |
1 | 00 β Hide the measured temperature; 01 β Show the measured temperature. Default state. |
Example downlink: 0x4000 β Hide the measured temperature.
Byte index | Hex value β Meaning |
0 | 42 β The command code. |
1 | 00 β Hide humidity; 01 β Show humidity. Default state. |
Example downlink: 0x4200 β Hide the measured humidity
Byte index | Hex value β Meaning |
0 | 44 β The command code. |
1 | 00 β Hide light intensity; 01 β Show light intensity. Default state. |
Example downlink: 0x4400 β Hide the light intensity.