hvac_night_mode
Last updated on June 17, 2024
Data type: BOOL.
Usage method: stores the device state and can change it.
Purpose: manages the night mode:
true
– night mode on.false
– night mode off.
Devices with this function
- hvac_ac – air conditioners.
- hvac_air_purifier – air purifiers.
- hvac_humidifier – air humidifiers.
Examples of voice commands
— Салют, включи ночной режим на кондиционере (Salute, switch the air conditioner to the night mode)
— Салют, выключи ночной режим на увлажнителе воздуха (Salute, turn off the night mode of the air humidifier)
Function description for a device model
The function must be added to the model descriptions of all devices that support it.
"features": [
"hvac_night_mode",
// ...
]
Function state description example
The example describes a device with the switched-off night mode.
{
"states": [
{
"key": "hvac_night_mode",
"value": {
"type": "BOOL",
"bool_value": false
}
}
]
}