hvac_water_level
Last updated on June 17, 2024
Data type: FLOAT(0, 50).
Usage method: stores the device state without changing it.
Purpose: shows the amount of water in the tank It can take values from 0 to 50l.
When describing the device model, the range and interval of values taken by the function can be changed.
Devices with this function
hvac_humidifier – air humidifiers.
Examples of voice commands
— Салют, сколько воды в увлажнителе воздуха? (Salute, how much water is in the air humidifier?)
— Салют, какое количество воды в увлажнителе воздуха? (Salute, what is the water amount 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_level",
// ...
]
Function state description example
In this example, the device's tank contains 1l of water.
{
"states": [
{
"key": "hvac_water_level",
"value": {
"type": "FLOAT",
"float_value": 1
}
}
]
}