woutercoppens / home-assistant

GNU Affero General Public License v3.0
3 stars 1 forks source link

error while loading the new Openmotics integration #1

Closed DCL777 closed 2 years ago

DCL777 commented 2 years ago

Version of the custom_component

main repo: 11 days old

Configuration

nothing yet configured

Describe the bug

Hi Wouter,

I followed the manual to install your integration and used "Option 1: Copy Method" because the HACS method gave me an error while adding the new repo. (HACS 1.16.0, front end version: 20211010111104) image

after shutting HA down and restarted it, i started the new Openmotics Integration. After a while (1-2 min.) i received the following error: image

Do you know, what could be wrong? is there somewhere a log file that i can provide you?

Thanks a lot

kind regards, Dries

Debug log

not yet available, do you have the exact name?

logger:
  default: critical
  logs:
    homeassistant.components.openmotics: info

is this correct?

woutercoppens commented 2 years ago

Debug log

logger:
  default: warning
  #default: debug
  logs:
    custom_components.openmotics: debug

! Be careful about the intents !

woutercoppens commented 2 years ago

Hi Dries,

HACS support will be added in a later stage. I'm currently focusing on getting the HA integration working. First priority is to get websockets working to fix the delay in the HA interface.

For now please copy the files in the custom_components folder

DCL777 commented 2 years ago

Hi Wouter,

I think something is wrong with: openmotics-cloud-sdk==0.0.15 see log:

2021-11-11 11:23:26 ERROR (SyncWorker_5) [homeassistant.util.package] Unable to install package openmotics-cloud-sdk==0.0.15: ERROR: Could not find a version that satisfies the requirement openmotics-cloud-sdk==0.0.15 (from versions: none)
ERROR: No matching distribution found for openmotics-cloud-sdk==0.0.15
WARNING: You are using pip version 20.2.4; however, version 21.3.1 is available.
You should consider upgrading via the '/usr/local/bin/python3 -m pip install --upgrade pip' command.
2021-11-11 11:23:48 ERROR (SyncWorker_0) [homeassistant.util.package] Unable to install package openmotics-cloud-sdk==0.0.15: ERROR: Could not find a version that satisfies the requirement openmotics-cloud-sdk==0.0.15 (from versions: none)
ERROR: No matching distribution found for openmotics-cloud-sdk==0.0.15
WARNING: You are using pip version 20.2.4; however, version 21.3.1 is available.
You should consider upgrading via the '/usr/local/bin/python3 -m pip install --upgrade pip' command.
2021-11-11 11:23:57 ERROR (SyncWorker_2) [homeassistant.components.influxdb] Cannot connect to InfluxDB due to 'HTTPConnectionPool(host='192.168.1.6', port=8086): Max retries exceeded with url: /write?db=DB_TO_STORE_EVENTS (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xffff79de5b50>: Failed to establish a new connection: [Errno 111] Connection refused'))'. Please check that the provided connection details (host, port, etc.) are correct and that your InfluxDB server is running and accessible. Retrying in 60 seconds.
2021-11-11 11:24:10 ERROR (SyncWorker_6) [homeassistant.util.package] Unable to install package openmotics-cloud-sdk==0.0.15: ERROR: Could not find a version that satisfies the requirement openmotics-cloud-sdk==0.0.15 (from versions: none)
ERROR: No matching distribution found for openmotics-cloud-sdk==0.0.15
WARNING: You are using pip version 20.2.4; however, version 21.3.1 is available.
You should consider upgrading via the '/usr/local/bin/python3 -m pip install --upgrade pip' command.
2021-11-11 11:24:10 ERROR (MainThread) [aiohttp.server] Error handling request
Traceback (most recent call last):
  File "/usr/local/lib/python3.9/site-packages/aiohttp/web_protocol.py", line 422, in _handle_request
    resp = await self._request_handler(request)
  File "/usr/local/lib/python3.9/site-packages/aiohttp/web_app.py", line 499, in _handle
    resp = await handler(request)
  File "/usr/local/lib/python3.9/site-packages/aiohttp/web_middlewares.py", line 119, in impl
    return await handler(request)
  File "/usr/src/homeassistant/homeassistant/components/http/security_filter.py", line 60, in security_filter_middleware
    return await handler(request)
  File "/usr/src/homeassistant/homeassistant/components/http/forwarded.py", line 98, in forwarded_middleware
    return await handler(request)
  File "/usr/src/homeassistant/homeassistant/components/http/request_context.py", line 24, in request_context_middleware
    return await handler(request)
  File "/usr/src/homeassistant/homeassistant/components/http/ban.py", line 78, in ban_middleware
    return await handler(request)
  File "/usr/src/homeassistant/homeassistant/components/http/auth.py", line 138, in auth_middleware
    return await handler(request)
  File "/usr/src/homeassistant/homeassistant/components/http/view.py", line 135, in handle
    result = await result
  File "/usr/src/homeassistant/homeassistant/components/config/config_entries.py", line 130, in post
    return await super().post(request)
  File "/usr/src/homeassistant/homeassistant/components/http/data_validator.py", line 62, in wrapper
    result = await method(view, request, *args, **kwargs)
  File "/usr/src/homeassistant/homeassistant/helpers/data_entry_flow.py", line 71, in post
    result = await self._flow_mgr.async_init(
  File "/usr/src/homeassistant/homeassistant/data_entry_flow.py", line 197, in async_init
    flow, result = await task
  File "/usr/src/homeassistant/homeassistant/data_entry_flow.py", line 215, in _async_init
    flow = await self.async_create_flow(handler, context=context, data=data)
  File "/usr/src/homeassistant/homeassistant/config_entries.py", line 706, in async_create_flow
    await async_process_deps_reqs(self.hass, self._hass_config, integration)
  File "/usr/src/homeassistant/homeassistant/setup.py", line 378, in async_process_deps_reqs
    await requirements.async_get_integration_with_requirements(
  File "/usr/src/homeassistant/homeassistant/requirements.py", line 85, in async_get_integration_with_requirements
    await _async_process_integration(hass, integration, done)
  File "/usr/src/homeassistant/homeassistant/requirements.py", line 101, in _async_process_integration
    await async_process_requirements(
  File "/usr/src/homeassistant/homeassistant/requirements.py", line 164, in async_process_requirements
    await _async_process_requirements(
  File "/usr/src/homeassistant/homeassistant/requirements.py", line 196, in _async_process_requirements
    raise RequirementsNotFound(name, [req])
homeassistant.requirements.RequirementsNotFound: Requirements for openmotics not found: ['openmotics-cloud-sdk==0.0.15'].
woutercoppens commented 2 years ago

Hi Dries,

I modified manifest.json so it installs automatically the pyopenmotics from github. After copying the custom_components folder, can you uninstall the old version of pyopenmotics:

W.

DCL777 commented 2 years ago

Hi Wouter,

Thanks for the update. This went well this time, but logging in does not work yet.
see below for my loggings.
I tried with 'cloud.openmotics.com' as well with local address 'https://192.168.1.122/' but it's all the same There is also a error shown, without text. see image. & i tried with and without SSL

image

2021-11-13 10:00:19 ERROR (MainThread) [custom_components.openmotics.config_flow] Unexpected exception
Traceback (most recent call last):
  File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 61, in map_httpcore_exceptions
    yield
  File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 180, in handle_request
    status_code, headers, byte_stream, extensions = self._pool.handle_request(
  File "/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection_pool.py", line 234, in handle_request
    response = connection.handle_request(
  File "/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection.py", line 136, in handle_request
    self.socket = self._open_socket(timeout)
  File "/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection.py", line 163, in _open_socket
    return self._backend.open_tcp_stream(
  File "/usr/local/lib/python3.9/site-packages/httpcore/_backends/sync.py", line 144, in open_tcp_stream
    return SyncSocketStream(sock=sock)
  File "/usr/local/lib/python3.9/contextlib.py", line 137, in __exit__
    self.gen.throw(typ, value, traceback)
  File "/usr/local/lib/python3.9/site-packages/httpcore/_exceptions.py", line 12, in map_exceptions
    raise to_exc(exc) from None
httpcore.ConnectError: [Errno -3] Try again

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

Traceback (most recent call last):
  File "/config/custom_components/openmotics/config_flow.py", line 105, in async_step_user
    await self.hass.async_add_executor_job(backendclient.get_token)
  File "/usr/local/lib/python3.9/concurrent/futures/thread.py", line 52, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/usr/local/lib/python3.9/site-packages/pyopenmotics/openmotics.py", line 48, in get_token
    self.token = self.session.fetch_token(
  File "/usr/local/lib/python3.9/site-packages/authlib/oauth2/client.py", line 203, in fetch_token
    return self._fetch_token(
  File "/usr/local/lib/python3.9/site-packages/authlib/oauth2/client.py", line 220, in _fetch_token
    resp = self.session.request(
  File "/usr/local/lib/python3.9/site-packages/authlib/integrations/httpx_client/oauth2_client.py", line 198, in request
    return super(OAuth2Client, self).request(
  File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 787, in request
    return self.send(
  File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 878, in send
    response = self._send_handling_auth(
  File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 908, in _send_handling_auth
    response = self._send_handling_redirects(
  File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 947, in _send_handling_redirects
    response = self._send_single_request(request, timeout)
  File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 983, in _send_single_request
    (status_code, headers, stream, extensions) = transport.handle_request(
  File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 180, in handle_request
    status_code, headers, byte_stream, extensions = self._pool.handle_request(
  File "/usr/local/lib/python3.9/contextlib.py", line 137, in __exit__
    self.gen.throw(typ, value, traceback)
  File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 78, in map_httpcore_exceptions
    raise mapped_exc(message) from exc
httpx.ConnectError: [Errno -3] Try again
2021-11-13 10:01:05 ERROR (MainThread) [custom_components.openmotics.config_flow] Unexpected exception
Traceback (most recent call last):
  File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 61, in map_httpcore_exceptions
    yield
  File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 180, in handle_request
    status_code, headers, byte_stream, extensions = self._pool.handle_request(
  File "/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection_pool.py", line 234, in handle_request
    response = connection.handle_request(
  File "/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection.py", line 136, in handle_request
    self.socket = self._open_socket(timeout)
  File "/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection.py", line 163, in _open_socket
    return self._backend.open_tcp_stream(
  File "/usr/local/lib/python3.9/site-packages/httpcore/_backends/sync.py", line 144, in open_tcp_stream
    return SyncSocketStream(sock=sock)
  File "/usr/local/lib/python3.9/contextlib.py", line 137, in __exit__
    self.gen.throw(typ, value, traceback)
  File "/usr/local/lib/python3.9/site-packages/httpcore/_exceptions.py", line 12, in map_exceptions
    raise to_exc(exc) from None
httpcore.ConnectError: [Errno -3] Try again

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

Traceback (most recent call last):
  File "/config/custom_components/openmotics/config_flow.py", line 105, in async_step_user
    await self.hass.async_add_executor_job(backendclient.get_token)
  File "/usr/local/lib/python3.9/concurrent/futures/thread.py", line 52, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/usr/local/lib/python3.9/site-packages/pyopenmotics/openmotics.py", line 48, in get_token
    self.token = self.session.fetch_token(
  File "/usr/local/lib/python3.9/site-packages/authlib/oauth2/client.py", line 203, in fetch_token
    return self._fetch_token(
  File "/usr/local/lib/python3.9/site-packages/authlib/oauth2/client.py", line 220, in _fetch_token
    resp = self.session.request(
  File "/usr/local/lib/python3.9/site-packages/authlib/integrations/httpx_client/oauth2_client.py", line 198, in request
    return super(OAuth2Client, self).request(
  File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 787, in request
    return self.send(
  File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 878, in send
    response = self._send_handling_auth(
  File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 908, in _send_handling_auth
    response = self._send_handling_redirects(
  File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 947, in _send_handling_redirects
    response = self._send_single_request(request, timeout)
  File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 983, in _send_single_request
    (status_code, headers, stream, extensions) = transport.handle_request(
  File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 180, in handle_request
    status_code, headers, byte_stream, extensions = self._pool.handle_request(
  File "/usr/local/lib/python3.9/contextlib.py", line 137, in __exit__
    self.gen.throw(typ, value, traceback)
  File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 78, in map_httpcore_exceptions
    raise mapped_exc(message) from exc
httpx.ConnectError: [Errno -3] Try again

Thanks a lot

woutercoppens commented 2 years ago

Hi,

Very strange. I just deleted the integration and activated it again: [image: image.png] [image: image.png]

What do you use as environment? I see you have python installed at /usr/local?

W.

On Sat, 13 Nov 2021 at 10:10, DCL777 @.***> wrote:

Hi Wouter,

Thanks for the update. This went well this time, but logging in does not work yet. see below for my loggings. I tried with 'cloud.openmotics.com' as well with local address ' https://192.168.1.122/' but it's all the same There is also a error shown, without text. see image. & i tried with and without SSL

[image: image] https://user-images.githubusercontent.com/55956951/141613025-cc521b68-641c-4259-acb5-2e6403e23464.png

2021-11-13 10:00:19 ERROR (MainThread) [custom_components.openmotics.config_flow] Unexpected exception Traceback (most recent call last): File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 61, in map_httpcore_exceptions yield File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 180, in handle_request status_code, headers, byte_stream, extensions = self._pool.handle_request( File "/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection_pool.py", line 234, in handle_request response = connection.handle_request( File "/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection.py", line 136, in handle_request self.socket = self._open_socket(timeout) File "/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection.py", line 163, in _open_socket return self._backend.open_tcp_stream( File "/usr/local/lib/python3.9/site-packages/httpcore/_backends/sync.py", line 144, in open_tcp_stream return SyncSocketStream(sock=sock) File "/usr/local/lib/python3.9/contextlib.py", line 137, in exit self.gen.throw(typ, value, traceback) File "/usr/local/lib/python3.9/site-packages/httpcore/_exceptions.py", line 12, in map_exceptions raise to_exc(exc) from None httpcore.ConnectError: [Errno -3] Try again

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

Traceback (most recent call last): File "/config/custom_components/openmotics/config_flow.py", line 105, in async_step_user await self.hass.async_add_executor_job(backendclient.get_token) File "/usr/local/lib/python3.9/concurrent/futures/thread.py", line 52, in run result = self.fn(*self.args, **self.kwargs) File "/usr/local/lib/python3.9/site-packages/pyopenmotics/openmotics.py", line 48, in get_token self.token = self.session.fetch_token( File "/usr/local/lib/python3.9/site-packages/authlib/oauth2/client.py", line 203, in fetch_token return self._fetch_token( File "/usr/local/lib/python3.9/site-packages/authlib/oauth2/client.py", line 220, in _fetch_token resp = self.session.request( File "/usr/local/lib/python3.9/site-packages/authlib/integrations/httpx_client/oauth2_client.py", line 198, in request return super(OAuth2Client, self).request( File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 787, in request return self.send( File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 878, in send response = self._send_handling_auth( File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 908, in _send_handling_auth response = self._send_handling_redirects( File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 947, in _send_handling_redirects response = self._send_single_request(request, timeout) File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 983, in _send_single_request (status_code, headers, stream, extensions) = transport.handle_request( File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 180, in handle_request status_code, headers, byte_stream, extensions = self._pool.handle_request( File "/usr/local/lib/python3.9/contextlib.py", line 137, in exit self.gen.throw(typ, value, traceback) File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 78, in map_httpcore_exceptions raise mapped_exc(message) from exc httpx.ConnectError: [Errno -3] Try again 2021-11-13 10:01:05 ERROR (MainThread) [custom_components.openmotics.config_flow] Unexpected exception Traceback (most recent call last): File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 61, in map_httpcore_exceptions yield File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 180, in handle_request status_code, headers, byte_stream, extensions = self._pool.handle_request( File "/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection_pool.py", line 234, in handle_request response = connection.handle_request( File "/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection.py", line 136, in handle_request self.socket = self._open_socket(timeout) File "/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection.py", line 163, in _open_socket return self._backend.open_tcp_stream( File "/usr/local/lib/python3.9/site-packages/httpcore/_backends/sync.py", line 144, in open_tcp_stream return SyncSocketStream(sock=sock) File "/usr/local/lib/python3.9/contextlib.py", line 137, in exit self.gen.throw(typ, value, traceback) File "/usr/local/lib/python3.9/site-packages/httpcore/_exceptions.py", line 12, in map_exceptions raise to_exc(exc) from None httpcore.ConnectError: [Errno -3] Try again

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

Traceback (most recent call last): File "/config/custom_components/openmotics/config_flow.py", line 105, in async_step_user await self.hass.async_add_executor_job(backendclient.get_token) File "/usr/local/lib/python3.9/concurrent/futures/thread.py", line 52, in run result = self.fn(*self.args, **self.kwargs) File "/usr/local/lib/python3.9/site-packages/pyopenmotics/openmotics.py", line 48, in get_token self.token = self.session.fetch_token( File "/usr/local/lib/python3.9/site-packages/authlib/oauth2/client.py", line 203, in fetch_token return self._fetch_token( File "/usr/local/lib/python3.9/site-packages/authlib/oauth2/client.py", line 220, in _fetch_token resp = self.session.request( File "/usr/local/lib/python3.9/site-packages/authlib/integrations/httpx_client/oauth2_client.py", line 198, in request return super(OAuth2Client, self).request( File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 787, in request return self.send( File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 878, in send response = self._send_handling_auth( File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 908, in _send_handling_auth response = self._send_handling_redirects( File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 947, in _send_handling_redirects response = self._send_single_request(request, timeout) File "/usr/local/lib/python3.9/site-packages/httpx/_client.py", line 983, in _send_single_request (status_code, headers, stream, extensions) = transport.handle_request( File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 180, in handle_request status_code, headers, byte_stream, extensions = self._pool.handle_request( File "/usr/local/lib/python3.9/contextlib.py", line 137, in exit self.gen.throw(typ, value, traceback) File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py", line 78, in map_httpcore_exceptions raise mapped_exc(message) from exc httpx.ConnectError: [Errno -3] Try again

Thanks a lot

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/woutercoppens/home-assistant/issues/1#issuecomment-967883804, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABZEVZ6XXMEOAGM2FD3IMPLULYTQJANCNFSM5HTNONJA . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

DCL777 commented 2 years ago

Hi Wouter,

Your images are not visible.

I use HASSIO on ODROID-C2. I updated everything to the latest version. so i did last time: "ha core rebuild"

image

kind regards,

Dries Claerbout

woutercoppens commented 2 years ago

Hi Dries,

I'm running hassio on a RPI3, so there shouldn't be a lot of differences.

➜ ~ ha core info arch: aarch64 audio_input: None audio_output: None boot: true image: ghcr.io/home-assistant/raspberrypi3-64-homeassistant ip_address: 172.30.32.1 last_version: 2021.11.3 machine: raspberrypi3-64 port: 8123 ssl: false update_available: false version: 2021.11.3 version_latest: 2021.11.3 wait_boot: 600 watchdog: true

➜ ~ ha os info board: rpi3-64 boot: B data_disk: /dev/mmcblk0p8 update_available: false version: "6.6" version_latest: "6.6"

so we're running the same versions.

Some friends are also running my new openmotics integration on hassio and none complained about this issue.

For the moment it has only been tested with cloud.openmotics.com. It looks like your HA environment cannot reach cloud.openmotics.com.

Can you do some tests?

➜ ~ ping cloud.openmotics.com PING cloud.openmotics.com (108.128.34.246): 56 data bytes 64 bytes from 108.128.34.246: seq=0 ttl=45 time=36.596 ms 64 bytes from 108.128.34.246: seq=1 ttl=45 time=38.828 ms ^C --- cloud.openmotics.com ping statistics --- 3 packets transmitted, 2 packets received, 33% packet loss round-trip min/avg/max = 36.596/37.712/38.828 ms

W.

On Sun, 14 Nov 2021 at 13:43, DCL777 @.***> wrote:

Hi Wouter,

Your images are not visible.

I use HASSIO on ODROID-C2. I updated everything to the latest version. so i did last time: "ha core rebuild"

[image: image] https://user-images.githubusercontent.com/55956951/141681416-9038c267-efba-46be-99c7-d5cac40f192c.png

kind regards,

Dries Claerbout

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/woutercoppens/home-assistant/issues/1#issuecomment-968283971, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABZEVZ5KB5CYTASGWYF7EWDUL6VHXANCNFSM5HTNONJA . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

DCL777 commented 2 years ago

Hi Wouter,

Here's the Ping test. It looks good. image

OS info & HA info looks very simular: image

maybe this is the problem: There are some old gateways registered. image

I will ask Openmotics to remove the old Gateways.

Kind regards,

Dries Claerbout

DCL777 commented 2 years ago

Hi Wouter, Openmotics removed the old gatewayes. So i tried it again today and the error looks now like the image below: image I'll try to reboot HA and Openmotics and try again. Kind regards, Dries Claerbout

DCL777 commented 2 years ago

Hi Wouter,

It works! :-)

The old Openmotics integration was still in HA. After i deleted it, and restarted HA, it worked.

Thanks a lot to help.

Kind regards,

Dries Claerbout