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