Hello, fairly new to Home Assistant but loving it so far! I have a Honeywell wifi thermostat - the back says the model is RTH9580WF01. Home Assistant shows me it’s status but does not allow me to control it. I added the below code to my configuration.yaml file:
#Thermostat
climate:
- platform: honeywell
username: !secret honeywell_usr
password: !secret honeywell_pwd
region: us
scan_interval: 600
And in lovelace I added a Thermostat card with the entity selected of “climate.thermostat”. The card shows up and reflects my current temperature setting. However, if I drag the slider to set a new temperature, my thermostat doesn’t change temp. I get the following error in HA:
2019-02-15 11:10:48 ERROR (MainThread) [homeassistant.core] Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File "/usr/local/lib/python3.6/site-packages/homeassistant/helpers/service.py", line 291, in _handle_service_platform_call
await func(entity, data)
File "/usr/local/lib/python3.6/site-packages/homeassistant/components/climate/__init__.py", line 574, in async_service_temperature_set
await entity.async_set_temperature(**kwargs)
File "/usr/local/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
File "/usr/local/lib/python3.6/site-packages/homeassistant/components/climate/honeywell.py", line 300, in set_temperature
if getattr(self._device, "hold_{}".format(mode)) is False:
AttributeError: 'Device' object has no attribute 'hold_auto'
So it would appear that it is trying to set an “hold_auto” attribute that is not recognized. Anyone have any troubleshooting suggestions? Or should I file a bug report? I am running hass.io 0.87.0 from image running on a Raspberry Pi 3B+
Thanks in advance for any help!