MyQ error message

Cross-posting to a few others as this does not appear to be solved, for me at least, after upgrading to .79 which has the pull request merged. Any ideas are greatly appreciated.

=========================

The new update on 0.79 doesn’t seem to solve the issue for me. I am still getting the below when opening and stopping the door halfway. The system doesn’t seem to recognize the ‘opening’ / ‘stopped’ state, though it does see ‘closing’ and ‘closed’:

2018-09-28 21:24:14 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/entity.py”, line 234, in async_update_ha_state
state = self.state
File “/usr/local/lib/python3.6/site-packages/homeassistant/components/cover/init.py”, line 231, in state
if self.is_opening:
File “/usr/local/lib/python3.6/site-packages/homeassistant/components/cover/myq.py”, line 109, in is_opening
return MYQ_TO_HASS[self._status] == STATE_OPENING
KeyError: ‘stopped’

The above occurs when I am running the ‘open’ and then ‘stop’ command. Otherwise, the below is happening in the background and writing to the log file:

2018-09-28 21:20:29 ERROR (SyncWorker_11) [pymyq] MyQ - API Error[get_devices] 500 Server Error: Internal Server Error for url: https://myqexternal.myqdevice.com/api/v4/UserDeviceDetails/Get
2018-09-28 21:20:29 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/entity.py”, line 234, in async_update_ha_state
state = self.state
File “/usr/local/lib/python3.6/site-packages/homeassistant/components/cover/init.py”, line 231, in state
if self.is_opening:
File “/usr/local/lib/python3.6/site-packages/homeassistant/components/cover/myq.py”, line 109, in is_opening
return MYQ_TO_HASS[self._status] == STATE_OPENING
KeyError: False

1 Like