hvac_work_mode
Last updated on June 17, 2024
Data type: ENUM.
Usage method: stores the device state and can change it.
Purpose: manages the device operation mode:
air_purification
– air purification.auto
– automatic mode.comfortable_sleep
– comfortable sleep mode.cooling
– air cooling mode.dehumidification
– air dehumidification.eco
– energy saving.fast_cooling
– fast air cooling.fast_heating
– fast air heating.heating
– air heating.self_cleaning
– self-cleaning and self-drying of the device.turbo
– intensive operation mode.ventilation
– ventilation without air cooling or heating.
When describing the device model, the list of available operation modes of a function can be shortened.
Devices with this function
hvac_ac – air conditioners.
Examples of voice commands
— Салют, включи вентиляцию на кондиционере (Salute, turn on the ventilation on the air conditioner)
— Салют, включи самоочистку на кондиционере (Salute, turn on the air conditioner self-cleaning)
— Салют, выключи режим комфортного сна на кондиционере (Salute, turn off the comfortable sleep mode on the air conditioner)
Function description for a device model
The function must be added to the model descriptions of all devices that support it.
"features": [
"hvac_work_mode",
// ...
]
Function state description example
The example describes a device functioning in the energy saving mode.
{
"states": [
{
"key": "hvac_work_mode",
"value": {
"type": "ENUM",
"enum_value": "eco"
}
}
]
}