mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 15:26:59 +00:00
Update honeywell docs (#30873)
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
This commit is contained in:
parent
e540f882a5
commit
20e83d7050
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user