hvac_air_flow_power
Last updated on June 17, 2024
Data type: ENUM.
Usage method: stores the device state and can change it.
Purpose: manages the fan speed:
auto
– the speed is changed automatically.high
– high speed.low
– low speed.medium
– medium speed.quiet
– silent operation mode. The fan speed is slowed for noise reduction.turbo
– increased fan speed. Usually used for fast cooling, heating or ventilating the room.
When describing the device model, the list of available operation modes of a function can be shortened.
Devices with this function
- hvac_ac – air conditioners.
- hvac_air_purifier – air purifiers.
- hvac_fan – fans.
- hvac_heater – heaters.
- hvac_humidifier – air humidifiers.
Examples of voice commands
— Салют, включи кондиционер в режиме «Турбо» (Salute, turn on the air conditioner in the turbo mode)
— Салют, сделай скорость вентилятора максимальной (Salute, switch the fan to the maximum speed)
Function description for a device model
The function must be added to the model descriptions of all devices that support it.
"features": [
"hvac_air_flow_power",
// ...
]
Function state description example
The example describes a device functioning in the silent mode.
{
"states": [
{
"key": "hvac_air_flow_power",
"value": {
"type": "ENUM",
"enum_value": "quiet"
}
}
]
}