hvac_replace_filter
Last updated on June 17, 2024
Data type: BOOL.
Usage method: stores the device state without changing it.
Purpose: shows whether it is time to replace the filter:
true
– filter replacement required.false
– filter replacement not required.
Devices with this function
- hvac_air_purifier – air purifiers.
- hvac_humidifier – air humidifiers.
Examples of voice commands
— Салют, нужно ли менять фильтр в очистителе воздуха? (Salute, does the air purifier filter need to be changed?)
— Салют, проверь состояние фильтра в увлажнителе воздуха (Salute, check the state of the air humidifier filter)
Function description for a device model
The function must be added to the model descriptions of all devices that support it.
"features": [
"hvac_replace_filter",
// ...
]
Function state description example
The example describes a device with a filter to be replaced.
{
"states": [
{
"key": "hvac_replace_filter",
"value": {
"type": "BOOL",
"bool_value": true
}
}
]
}