hvac_air_flow_direction
Last updated on June 17, 2024
Data type: ENUM.
Usage method: stores the device state and can change it.
Purpose: manages the air flow direction.
auto
– the air flow automatically changes its direction.horizontal
– the air flow direction is changed to horizontal.no
– air flow management is off.rotation
– the air flow direction is changed to horizontal and vertical.swing
– automatic air flow direction change mode.vertical
– the air flow direction is changed to vertical.
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.
Examples of voice commands
— Салют, включи вертикальный поток воздуха на кондиционере (Salute, turn on the vertical air flow)
— Салют, включи автонаправление обдува на кондиционере (Salute, turn on the automatic air flow direction)
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_direction",
// ...
]
Function state description example
The example describes a device that changes the direction of the air flow vertically.
{
"states": [
{
"key": "hvac_air_flow_direction",
"value": {
"type": "ENUM",
"enum_value": "vertical"
}
}
]
}