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