hvac_heating_rate
Last updated on June 17, 2024
Data type: ENUM.
Usage method: stores the device state and can change it.
Purpose: manages the heating speed:
auto
– automatic heating speed.high
– high speed of heating.low
– low speed of heating.medium
– medium speed of heating.- A number within the range of 1-10, where 1 is the minimum heating speed, and 10 is the maximum heating speed.
When describing the device model, the list of available operation modes of a function can be shortened.
Devices with this function
- hvac_boiler – boilers, heating controllers.
- hvac_underfloor_heating – heated floors.
Examples of voice commands
— Салют, включи автоматическую скорость на водонагревателе (Salute, switch the water heater to the automatic speed)
— Салют, поменяй скорость нагрева теплого пола на 9 (Salute, change the underfloor heating speed to 9)
Function description for a device model
The function must be added to the model descriptions of all devices that support it.
"features": [
"hvac_heating_rate",
// ...
]
Function state description example
The example describes a device with a low heating speed.
{
"states": [
{
"key": "hvac_heating_rate",
"value": {
"type": "ENUM",
"enum_value": "low"
}
}
]
}