In the delivery state, the measured value is output in increments of 1/10 °C in two's complement format (signed integer).
The complete measuring range is output for each resistance sensor. Index 0x8000:02 and 0x8010:02 offers the possibility to change the method of representation of the measured value.
 | Presentation - Signed Integer:
The measured value is represented in two's complement - Maximum representation range with 16-bit = -32768 … + 32767
- Example:
1000 0000 0000 0000bin = 0x8000hex = - 32768dec 1111 1111 1111 1110bin = 0xFFFEhex = - 2dec 1111 1111 1111 1111bin = 0xFFFFhex = - 1dec 0000 0000 0000 0001bin = 0x0001hex = +1dec 0000 0000 0000 0010bin = 0x0002hex = +2dec 0111 1111 1111 1111bin = 0x7FFFhex = +32767dec - Absolute value with MSB as sign:
The measured value is output in signed amount representation. - Maximum representation range with 16-bit = -32767 … + 32767
- Example:
1111 1111 1111 1111bin = 0xFFFFhex = - 32767dec 1000 0000 0000 0010bin = 0x8002hex = - 2dec 1000 0000 0000 0001bin = 0x8001hex = - 1dec 0000 0000 0000 0001bin = 0x0001hex = +1dec 0000 0000 0000 0010bin = 0x0002hex = +2dec 0111 1111 1111 1111bin = 0x7FFFhex = +32767dec - High resolution (1/100 °C):
The measured value is output in 1/100 °C steps. The maximum measuring range is thus limited to 32767dec * (1/100)°C = 327.67 °C, but can be extended by user scaling!
|