diff --git a/source/_integrations/honeywell.markdown b/source/_integrations/honeywell.markdown index 4a2e68a3035..6bf566d6c74 100644 --- a/source/_integrations/honeywell.markdown +++ b/source/_integrations/honeywell.markdown @@ -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