Daikin BRP069A41 Unexpected Error

Hi!
I’m trying to add my BRP069A41
the integration asks me only the Ip and the Api key (tried with two units)
I receive an “unexpected error”
where can I start to look to try to solve the problem?
Thank you
(homeAssistant os just installed on a raspberry pi4, all updated)

ClientError
Traceback (most recent call last):
File “/usr/local/lib/python3.8/site-packages/aiohttp/connector.py”, line 936, in _wrap_create_connection
return await self._loop.create_connection(*args, **kwargs) # type: ignore # noqa
File “/usr/local/lib/python3.8/asyncio/base_events.py”, line 1025, in create_connection
raise exceptions[0]
File “/usr/local/lib/python3.8/asyncio/base_events.py”, line 1010, in create_connection
sock = await self._connect_sock(
File “/usr/local/lib/python3.8/asyncio/base_events.py”, line 924, in _connect_sock
await self.sock_connect(sock, address)
File “/usr/local/lib/python3.8/asyncio/selector_events.py”, line 494, in sock_connect
return await fut
File “/usr/local/lib/python3.8/asyncio/selector_events.py”, line 526, in _sock_connect_cb
raise OSError(err, f’Connect call failed {address}’)
TimeoutError: [Errno 110] Connect call failed (‘192.168.1.193’, 443)

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File “/usr/src/homeassistant/homeassistant/components/daikin/config_flow.py”, line 73, in _create_device
device = await Appliance.factory(
File “/usr/local/lib/python3.8/site-packages/pydaikin/daikin_base.py”, line 118, in factory
await appl.init()
File “/usr/local/lib/python3.8/site-packages/pydaikin/daikin_brp072c.py”, line 27, in init
await self._get_resource(f’common/register_terminal?key={self._key}’)
File “/usr/local/lib/python3.8/site-packages/pydaikin/daikin_base.py”, line 185, in _get_resource
return await self._run_get_resource(resource)
File “/usr/local/lib/python3.8/site-packages/pydaikin/daikin_brp072c.py”, line 32, in _run_get_resource
async with self.session.get(
File “/usr/local/lib/python3.8/site-packages/aiohttp/client.py”, line 1012, in aenter
self._resp = await self._coro
File “/usr/local/lib/python3.8/site-packages/aiohttp/client.py”, line 480, in _request
conn = await self._connector.connect(
File “/usr/local/lib/python3.8/site-packages/aiohttp/connector.py”, line 523, in connect
proto = await self._create_connection(req, traces, timeout)
File “/usr/local/lib/python3.8/site-packages/aiohttp/connector.py”, line 858, in _create_connection
_, proto = await self._create_direct_connection(
File “/usr/local/lib/python3.8/site-packages/aiohttp/connector.py”, line 1004, in _create_direct_connection
raise last_exc
File “/usr/local/lib/python3.8/site-packages/aiohttp/connector.py”, line 980, in _create_direct_connection
transp, proto = await self._wrap_create_connection(
File “/usr/local/lib/python3.8/site-packages/aiohttp/connector.py”, line 943, in _wrap_create_connection
raise client_error(req.connection_key, exc) from exc
aiohttp.client_exceptions.ClientConnectorError: Cannot connect to host 192.168.1.193:443 ssl:False [Connect call failed (‘192.168.1.193’, 443)]
Connessione persa. Riconnessione…

is it important what I write in the configuration.yaml file?
could be there the mistake?
Thank you

This is the issue. Your raspberry pi can’t connect to your unit (if it is running on 192.168.1.193).

Daikin doesn’t use configuration.yaml anymore.

Still fighting with my Daikin…
The Daikin is correctly shown in the Ip scanner list and in my modem devices at that address. It’s connected wifi at the same modem
It’s accessible from the Daikin application inside and outside.

In HA, I choose the “Daikin AC” integration and I put the Air Conditioner IP in the first field (192.168.1.193) and in the Api key (a value similar to this one 050F719A3F512) copied from the stick of the airconditioner wifi BRP069A41 module.
where I do a mistake?

thanks
I have 4 units and the results it’s the same, checked all IP with the Daikin app, any IP/key combinations, desperate I also tried the same key with the 4 differents IP…

In case it is not solved for you… try not to put any keys - just an automatically located IP (Home Assistant should use the same wifi as Daikin)

have you been able to solve it? I get the same exact error

Perhaps there’s a way to connect without SSL? When I ping my controller with port 443 I get an error, but it’s fine with port 80

curl -s 192.168.1.205:443 >/dev/null && echo Success. || echo Fail.
Fail.
curl -s 192.168.1.205:80 >/dev/null && echo Success. || echo Fail.
Success.

The error, that I’m getting while setting it up:
ConnectionRefusedError: [Errno 111] Connect call failed (‘192.168.1.205’, 443)

We are only using SSL (port 443) in the BRP072C integration (when the key is provided)…

https://bitbucket.org/mustang51/pydaikin/src/f5b7051d0bcfd679658dc348ced802c1167877a1/pydaikin/daikin_base.py#lines-160

https://bitbucket.org/mustang51/pydaikin/src/f5b7051d0bcfd679658dc348ced802c1167877a1/pydaikin/daikin_brp072c.py#lines-32

I have the same issue, did anyone manage to solve it?