hvac_ionization
Last updated on June 17, 2024
Data type: BOOL.
Usage method: stores the device state and can change it.
Purpose: manages the air ionization mode:
true
– ionization mode on.false
– ionization mode off.
Devices with this function
- hvac_ac – air conditioners.
- hvac_air_purifier – air purifiers.
- hvac_humidifier – air humidifiers.
Examples of voice commands
Voice commands are not provided, control is only via the interface.
Function description for a device model
The function must be added to the model descriptions of all devices that support it.
"features": [
"hvac_ionization",
// ...
]
Function state description example
The example describes a device with the switched-off ionization mode.
{
"states": [
{
"key": "hvac_ionization",
"value": {
"type": "BOOL",
"bool_value": false
}
}
]
}