External temperature measurement
Last updated
Last updated
When enabling this mode you need to first set the External temperature sensor value with the 3B command below. If you don't the FCT will assume a target temperature of 0Β°C degrees and act accordingly.
For example send the following command set (whichever of the two you use will have the same end result):
Temperature with accuracy of 1Β°C
0x3B183501 (set external temperature to 24Β°C)
or
Temperature with accuracy of 0.1Β°C
0x3C00F03501 (set external temperature to 24.0Β°C)
This will set the target temperature to a nice 24Β°C and activate the External temperature mode and await a new reading.
The server sends this command to Fan Coil Thermostat device when it has a new measured temperature by the external sensor. This external temperature will be used by Fan Coil Thermostat for the internal temperature control algorithm. The commands are detailed in the tables below.
Example downlink: 0x3B14 β the server notifies Fan Coil Thermostat that the measured temperature by the external sensor is 0x14[HEX] => 20[DEC] = 20Β°C.
The allowed range is 1...99Β°C (1.0Β°C resolution).
T[15:0] = Texternal[Β°C] * 10; The value of Texternal[Β°C] must be greater than 0Β°C!
Example command: 0x3C0102 - the server notifies the Fan Coil Thermostat that the measured temperature by the external sensor is 25.8Β°C => 25.8 * 10 = 258 [DEC] => 0x0102 [HEX];
The allowed range is 0.1...99.9Β°C (0.1Β°C resolution).
Byte index
Hex value β Meaning
0
35 β The command code.
1
00: Deactivate the automatic temp. control mode; Default value.
01: Activate the automatic temp. control mode.
Byte index
Sent request
Received response
0
36 β Command code
36 β Command code
1
00: The automatic temp. control mode is deactivated. 01: The automatic temp. control mode is activated.
Byte index
Hex value - Meaning
0
3B β The command code.
1
XX β The ext. temperature in degrees Celsius. The value must be greater than 0Β°C!
Byte index
Hex value β Meaning
0
3C β The command code.
1
XX - T[15:8].
2
XX - T[7:0].
Byte index
Sent request
Received response
0
3E β Command code
3E β Command code.
1
XX - T[15:8].
2
XX - T[7:0].