hvac_thermostat_mode
Last updated on June 17, 2024
Data type: ENUM.
Usage method: stores the device state and can change it.
Purpose: manages the thermostat operation mode:
auto
– automatic mode.cooling
– cooling.eco
– energy saving.fast_cooling
– fast cooling.fast_heating
– fast heating.heating
– heating.turbo
– intensive operation mode.
When describing the device model, the list of available operation modes of a function can be shortened.
Devices with this function
- hvac_boiler – boilers, heating controllers.
- hvac_heater – heaters.
- hvac_underfloor_heating – heated floors.
Examples of voice commands
— Салют, включи автоматический режим на обогревателе (Salute, switch the heater to the automatic mode)
— Салют, запусти режим «Эко» на водонагревателе (Salute, switch the water heater to the Eco mode)
— Салют, вруби режим нагрева на теплом полу (Salute, turn on the heating mode of the heated floor)
Function description for a device model
The function must be added to the model descriptions of all devices that support it.
"features": [
"hvac_thermostat_mode",
// ...
]
Function state description example
The example describes a device functioning in the air cooling mode.
{
"states": [
{
"key": "hvac_thermostat_mode",
"value": {
"type": "ENUM",
"enum_value": "cooling"
}
}
]
}