hvac_radiator
Thermostat for radiator.
Available device functions
The device can have all the functions listed below or some of them. E.g. if no heating temperature can be set for the thermostat, there is no need in including the hvac_temp_set
function in its model description.
The device has two mandatory functions: online
, on_off
. All thermostats must have them.
Function | Mandatory? | Description |
hvac_temp_set | Desired temperature | |
on_off | ✔︎ | Turning the device on and off remotely |
online | ✔︎ | Device availability: offline or online |
temperature | Current temperature |
Thermostat model description example
The model shall be described in accordance with the model structure. The example describes a thermostat equipped with all functions.
Besides, allowed values for the hvac_temp_setfunction
(target temperature) of the model are changed: devices of this model can be heated from 25 to 40 C at an interval of 5 C.
{
"id": "QWERTY124",
"manufacturer": "Xiaqara",
"model": "SM1123456789",
"hw_version": "3.1",
"sw_version": "5.6",
"description": "Xiaqara smart thermostat",
"category": "hvac_radiator",
"features": [
"hvac_temp_set",
"on_off",
"online",
"temperature"
],
"allowed_values": {
"hvac_temp_set": {
"type": "INTEGER",
"integer_values": {
"min": "25",
"max": "40",
"step": "5"
}
}
}
}
User's thermostat description example
The device shall be describe in accordance with the device structure. The example contains no thermostat model description as we believe that models are described independently and the model ID will be enough (in this case, QWERTY124).
{
"id": "ABCD_004",
"name": "My thermostat",
"default_name": "Smart thermostat",
"nicknames": ["Clever thermostat", "Manageable radiator"],
"home": "My home",
"room": "Living room",
"groups": ["Climate", "Heating"],
"model_id": "QWERTY124",
"hw_version": "3.1",
"sw_version": "5.6",
"partner_meta": {
"internal-id": 1234,
"specificity": "microchip 2A"
},
}