Fixed some errors in the controller related to the temperature sensor component.

This commit is contained in:
2021-09-24 21:18:38 +02:00
parent 58a3cd34ed
commit ad8797f57a
17 changed files with 65 additions and 62 deletions

View File

@ -14,15 +14,19 @@ namespace datapool {
// The IDs of the variables of the DH and CONTROLLER are here defined.
Temperature_value = 0x100001,
Temperature_Timestamp = 0x100002,
TEMP_SENSOR_CH1 = 0x10003,
TEMP_SENSOR_CH2 = 0x10004,
TargetState_COMPONENT_1 = 0x10005,
CurrentState_COMPONENT_1 = 0x100006,
HeaterRequest_COMPONENT_1 = 0x100007,
TargetState_COMPONENT_2 = 0x100008,
CurrentState_COMPONENT_2 = 0x100009,
HeaterRequest_COMPONENT_2 = 0x100010
TempValidity_SENSOR_CH1 = 0x10003,
TempValidity_SENSOR_CH2 = 0x10004,
Temperature_COMPONENT_1 = 0x10005,
TargetState_COMPONENT_1 = 0x10006,
CurrentState_COMPONENT_1 = 0x100007,
HeaterRequest_COMPONENT_1 = 0x100008,
Temperature_COMPONENT_2 = 0x10009,
TargetState_COMPONENT_2 = 0x100010,
CurrentState_COMPONENT_2 = 0x100011,
HeaterRequest_COMPONENT_2 = 0x100012
};
}