hvac_water_low_level
Last updated on June 17, 2024
Data type: BOOL.
Usage method: stores the device state without changing it.
Purpose: shows whether the water is off:
true
– no water left.false
– there is some water left.
Devices with this function
hvac_humidifier – air humidifiers.
Examples of voice commands
— Салют, нужно ли налить воду в увлажнитель? (Salute, does the air humidifier need to be refilled with water?)
— Салют есть ли вода в увлажнителе? (Salute, is there water 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_water_low_level",
// ...
]
Function state description example
The example describes a device that run out of water.
{
"states": [
{
"key": "hvac_water_low_level",
"value": {
"type": "BOOL",
"bool_value": true
}
}
]
}