Device ON/OFF status
You can change the device ON/OFF status with the following command set.
Set the status of the device.
00: Turn off the device. Default value.
01: Turn on the device.
Example command: 0x6601 – Turn on the device.
Get the status of the device.
00: The device is off.
01: The device is on.
Example command: 0x67;
Example response: 0x6701 – The device is on.
Changing the current operational mode
Information on how to change between Heating/Cooling/Ventilation is available here.
Target temperature
You can change the target temperature with the following command set.
You can set the target temperature with the command:
T[15:0] = Ttarget[°C] * 10;
Example command: 0x2E0102;
Set target temperature - 25.8°C * 10 = 258 [DEC] => 0x0102 [HEX].
This command gets the target temperature. The keepalive data in the example below is omitted for clarity.
Ttarget[°C] = T[15:0] / 10;
Example command: 0x2F;
Example response: 0x2F0102;
0x0102 [HEX] = 258 [DEC] => Ttarget = 258 / 10 = 25,8°C.
This command lets the Application Server that the target temperature has been manually (physically) changed from the device - the button on the devices has been pressed, setting a specific target temperature .
The command is sent together with the keepalive of the device. The keepalive data in the example below is omitted for clarity.
Ttarget[°C] = T[15:0] / 10;
Example uplink: 0x300102;
0x0102 [HEX] = 258 [DEC] => Ttarget = 258 / 10 = 25.8°C.
Configuring the target temperature step
You can change the target temperature step, when buttons are used. E.g. when the current target temperature is 22.0C and the step is 0.5C, if the user clicks the up button once, the target temperature will become 22.5C
You can set the target temperature step with the command:
XX - Tstep[°C] * 10. Default value: 0x05 (0,5°C)
Example command: 0x030F;
Sets the temperature step - 1.5°C * 10 = 15 [DEC] => 0x0F [HEX].
This command gets the target temperature step. The keepalive data in the example below is omitted for clarity.
Example command: 0x05;
Example response: 0x050F;
0x0F - convert to DEC 15 => Tstep = 15 / 10 = 1,5°C.
The allowed target temperature step range is 0.1...10°C (0.1°C max resolution).
Measured temperature sensor compensation
This command is used to set the compensation temperature values.
00: Positive compensation.
01: Negative compensation.
XX - Tcomp[°C] * 10. Default value: 0x010E (-1.4°C).
Example command: 0x5A0115;
Set the negative temp. compensation - 0x01[HEX].
Set the compensation temperature - 2.1°C * 10 = 21[DEC] => 0x15[HEX].
This command is used to get the compensation temperature values.
00: Compensation is positive.
01: Compensation is negative.
Tcomp[°C] = XX / 10;
Example command: 0x15;
Example response: 0x5B0115;
0x01 - The compensation is negative.
Convert 0x15[HEX] = 21[DEC] => Tcomp = 21 / 10 = 2,1°C.
Note: The allowed range is -5...5°C (0.1°C resolution).