hvac_humidity_set
Data type: INTEGER(30, 90).
Usage method: stores the device state and can change it.
Purpose: manages the air humidity to adjust it to the target level It takes values from the range of 30-90% at an interval of 1%. 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.
Please note that hvac_humudity_set
reflects the humidity level in the room to be reached. Information on the current humidity received from a built-in sensor must be transmitted via the function humidity.
Devices with this function
- hvac_ac – air conditioners.
- hvac_humidifier – air humidifiers.
Examples of voice commands
— Салют, установи влажность на увлажнителе на 40% (Salute, set the humidity on the humidifier to 40%)
— Салют, убавь влажность на кондиционере на 5% (Salute, reduce the humidity on the air conditioner by 5%)
— Салют, поставь влажность на увлажнителе на минимум (Salute, set the humidity on the humidifier to a minimum)
— Салют, сделай 50% на увлажнителе (Salute, make 50% on the humidifier)
Function description for a device model
"features": [
"hvac_humidity_set",
// ...
]
Function state description example
The example describes a device with the humidity at 40% of the maximum level.
{
"states": [
{
"key": "hvac_humidity_set",
"value": {
"type": "INTEGER",
"integer_value": "40"
}
}
]
}