kitchen_water_temperature_set
Data type: INTEGER(0, 100).
Usage method: stores the device state and can change it.
Purpose: controls the setting of the target temperature. It takes values from 0 to 100 C at an interval of 1 C. When describing the device model, the range and interval of values taken by the function can be changed.
Please note that kitchen_water_temperature_set
reflects the water temperature level to be reached. Information on the current temperature received from a built-in sensor must be transmitted via the function kitchen_water_temperature.
Devices with this function
kettle – kettles.
Examples of voice commands
— Салют, разогрей чайник до 70 градусов (Salute, warm up the kettle to 70 degrees)
— Салют, хочу 80 градусов на чайнике (Salute, I want 80 degrees on the kettle)
— Салют, поставь чайник на 50 градусов (Salute, put the kettle on 50 degrees)
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_set",
// ...
]
Function state description example
The example describes a kettle that must warm up the water to 85 C.
{
"states": [
{
"key": "kitchen_water_temperature_set",
"value": {
"type": "INTEGER",
"integer_value": "85"
}
}
]
}