Open bwduncan opened 1 year ago
I had the same problem. I removed the HTTP_FORBIDDEN
and the HTTP_UNAUTHORIZED
from here:
from homeassistant.const import (
CONF_PASSWORD,
CONF_TOKEN,
CONF_USERNAME,
)
And I changed this line:
if err.status == HTTP_UNAUTHORIZED or err.status == HTTP_FORBIDDEN:
by this other one:
if err.status == 401 or err.status == 403:
Now the config_flow works fine, and I can control the flow temperature 🙌
Hello i changed this but my installation dont recognice my ecodan ATW system :(
Can you help me?
Hi,
I installed this and it failed to start:
If I remove those imports and change the names to the numeric constants (401 and 403) then the integration loads and finds my ATW device!
I needed up update the
manifest.json
to usepymelcloud==2.11.0
, and then it sees my ATW device is in heat-flow mode and adds a climate device for me!That's very cool. Or should I say hot lol
:smile:
Bruce