mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-16 05:46:52 +00:00
Add humidifier to honeywell.markdown (#36158)
* Update honeywell.markdown Add humidifier based on PR * Update honeywell.markdown Use AI version of doc Fix typo * Update honeywell.markdown Touchup spacing Remove supported model section
This commit is contained in:
parent
b64908b867
commit
8e6c94ea52
@ -27,6 +27,7 @@ If your system is compatible with this integration, then you will be able access
|
||||
- [Climate](#climate)
|
||||
- [Sensor](#sensor)
|
||||
- [Switch](#switch)
|
||||
- [Humidifier](#humidifier)
|
||||
|
||||
{% include integrations/config_flow.md %}
|
||||
|
||||
@ -48,7 +49,7 @@ Other devices like Security systems are not currently supported by this integrat
|
||||
|
||||
The climate platform integrates Honeywell US-based thermostats into Home Assistant, allowing control of the thermostat through the user interface. The current inside temperature, operating mode, and fan state are also displayed on the thermostat card.
|
||||
|
||||
All [climate actions](/integrations/climate) are supported except set_swing_mode.
|
||||
All [climate actions](/integrations/climate) are supported except `set_swing_mode`.
|
||||
|
||||
Due to the instability of the Honeywell total connect system, actions within automations should repeat until success similar to the following example:
|
||||
|
||||
@ -98,3 +99,39 @@ This integration will add a switch for the following:
|
||||
|Switch|Value|
|
||||
--- | ---
|
||||
|Emergency Heat | Activates second stage heat source as primary heat|
|
||||
|
||||
## Humidifier
|
||||
|
||||
If the discovered device supports humidity control, the integration will add a humidifier and/or dehumidifier for each device.
|
||||
|
||||
### Available Actions
|
||||
|
||||
| Action | Description |
|
||||
|--------|-------------|
|
||||
| `humidifier.set_humidity` | Set target humidity level |
|
||||
| `humidifier.turn_on` | Enable humidity control |
|
||||
| `humidifier.turn_off` | Disable humidity control |
|
||||
| `humidifier.toggle` | Toggle humidity control |
|
||||
|
||||
For more details, see the [humidifier](/integrations/humidifier) integration documentation.
|
||||
|
||||
### Configuration Example
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
automation:
|
||||
- alias: "Maintain Comfortable Humidity"
|
||||
trigger:
|
||||
- platform: numeric_state
|
||||
entity_id: sensor.indoor_humidity
|
||||
below: 30 # Trigger when humidity drops below 30%
|
||||
action:
|
||||
- service: humidifier.turn_on
|
||||
target:
|
||||
entity_id: humidifier.living_room
|
||||
- service: humidifier.set_humidity
|
||||
target:
|
||||
entity_id: humidifier.living_room
|
||||
data:
|
||||
humidity: 35 # Set target humidity to 35% (recommended for comfort)
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user