kitchen_water_temperature
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, you can shorten the range of values accepted by the function or change their interval. For more information, see Allowed values of functions.
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"
}
}
]
}