kitchen_water_temperature
Last updated on June 17, 2024
Data type: INTEGER(0, 100).
Usage method: stores the device state without changing it.
Purpose: shows the current temperature of water. It takes values from the range of 0-100 at an interval of 1 degree. When describing the device model, the range and interval of values taken by the function can be changed.
Devices with this function
kettle – kettles.
Examples of voice commands
— Салют, какая температура чайника? (Salute, what is the temperature of the kettle?)
— Салют, какая температура воды в чайнике? (Salute, what is the temperature of the 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_temperature",
// ...
]
Function state description example
In the example, the kettle reports that the current water temperature is 60 degrees.
{
"states": [
{
"key": "kitchen_water_temperature",
"value": {
"type": "INTEGER",
"integer_value": "60"
}
}
]
}