hvac_replace_ionizator
Last updated on June 17, 2024
Data type: BOOL.
Usage method: stores the device state without changing it.
Purpose: hows whether it is time to replace the ionizer:
true
– ionizer replacement needed.false
– ionizer replacement not needed.
Devices with this function
- hvac_air_purifier – air purifiers.
- hvac_humidifier – air humidifiers.
Examples of voice commands
— Салют, нужно ли менять ионизатор в воздухоочистителе? (Salute, does the air purifier ionizer need to be changed?)
— Салют, не пора ли поменять ионизатор в увлажнителе воздуха? (Salute, is it time to change the ionizer in 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_replace_ionizator",
// ...
]
Function state description example
The example describes a device with an ionizer to be replaced.
{
"states": [
{
"key": "hvac_replace_ionizator",
"value": {
"type": "BOOL",
"bool_value": true
}
}
]
}