Update honeywell docs (#30873)

Co-authored-by: Franck Nijhof <frenck@frenck.nl>
This commit is contained in:
mkmer 2024-06-08 03:40:54 -04:00 committed by GitHub
parent e540f882a5
commit 20e83d7050
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,7 +50,33 @@ The climate platform integrates Honeywell US-based thermostats into Home Assista
All [climate services](/integrations/climate) are supported except set_swing_mode.
There is a "known" issue related to setting the temperature from Home Assistant with some thermostats. If your instance receives errors when setting the temperature above or below some value, go to the Honeywell web page and set the temperature to the max or min for the mode you are using, then adjust from Home Assistant.
Due to the instability of the Honeywell total connect system, service calls within automations should repeat until success similar to the following example:
```yaml
alias: "No one home"
description: "Everyone has left home"
trigger:
- platform: numeric_state
entity_id: zone.home
for:
minutes: 10
below: 1
action:
- repeat:
sequence:
- service: climate.set_temperature
target:
entity_id: climate.stat
data:
temperature: 64
- delay:
minutes: 1
until:
- condition: state
entity_id: climate.stat
attribute: temperature
state: 64
```
## Sensor