kitchen_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
kettle – kettles.
Examples of voice commands
— Салют, нужно ли налить воду в чайник? (Salute, do I need to pour water into the kettle?)
— Салют есть ли вода в чайнике? (Salute, is there water in the kettle?)
Function description for a device model
The function must be added to the model descriptions of all devices that support it.
"features": [
"kitchen_water_low_level",
// ...
]
Function state description example
The example describes a kettle that has run out of water.
{
"states": [
{
"key": "kitchen_water_low_level",
"value": {
"type": "BOOL",
"bool_value": true
}
}
]
}