You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sensibo_client has stopped working on the 30th of June. The command pod_ac_state returns an empty result. The issue seems to be a change in the protocol to read the AC state. To fix it, you can replace line 35-36:
result = self._get("/pods/%s/acStates" % podUid, limit = 1, fields="status,reason,acState")
By:
result = self._get("/pods/%s" % podUid, fields="acState")
And that should fix it. An update on this git would be useful...
The text was updated successfully, but these errors were encountered:
sebchalmers
changed the title
Server 'https://home.sensibo.com/api/v2' down?
AC state not responding
Jun 30, 2022
sensibo_client has stopped working on the 30th of June. The command pod_ac_state returns an empty result. The issue seems to be a change in the protocol to read the AC state. To fix it, you can replace line 35-36:
result = self._get("/pods/%s/acStates" % podUid, limit = 1, fields="status,reason,acState")
By:
result = self._get("/pods/%s" % podUid, fields="acState")
And that should fix it. An update on this git would be useful...
The text was updated successfully, but these errors were encountered: