I have installed the latest version of HA and the latest of the Myhome integration, but my HomeServer is not recognized by default.
When manually running the ownd command, it can see the commands:
python -m OWNd -v 2 -a 192.168.1.119 -p 20000 -P XXXXXX
2024-06-28 13:22:00,227 - OWNd - INFO - Starting OWNd.
2024-06-28 13:22:00,228 - OWNd - DEBUG - [Unknown model gateway - 192.168.1.119] Opening event session.
2024-06-28 13:22:00,231 - OWNd - DEBUG - [Unknown model gateway - 192.168.1.119] Negotiating event session.
2024-06-28 13:22:00,283 - OWNd - DEBUG - [Unknown model gateway - 192.168.1.119] Received SHA challenge: `*98*2##`
2024-06-28 13:22:00,283 - OWNd - DEBUG - [Unknown model gateway - 192.168.1.119] Accepting sha256 challenge, initiating handshake.
2024-06-28 13:22:00,287 - OWNd - DEBUG - [Unknown model gateway - 192.168.1.119] Sending event session password.
2024-06-28 13:22:09,233 - OWNd - DEBUG - Received: *1*1000#1*0211##
2024-06-28 13:22:09,281 - OWNd - DEBUG - Received: *1*1*0211##
2024-06-28 13:22:09,281 - OWNd - INFO - Light 0211 is switched on.
2024-06-28 13:22:10,288 - OWNd - DEBUG - Received: *1*1000#0*0211##
2024-06-28 13:22:10,308 - OWNd - DEBUG - Received: *1*0*0211##
2024-06-28 13:22:10,308 - OWNd - INFO - Light 0211 is switched off.
^C2024-06-28 13:23:05,896 - OWNd - INFO - Stoping OWNd.
2024-06-28 13:23:05,896 - OWNd - DEBUG - [Unknown model gateway - 192.168.1.119] Event session closed.
2024-06-28 13:23:05,896 - OWNd - INFO - OWNd stopped.
db96d82f01ce:/config#
After manual configuration, I can see in the logs I keep getting errors. Log below.
2024-06-28 15:41:36 2024-06-28 13:41:36.673 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2024-06-28 15:41:36 2024-06-28 13:41:36.685 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration myhome which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2024-06-28 15:41:39 2024-06-28 13:41:39.189 WARNING (MainThread) [homeassistant.helpers.frame] Detected that custom integration 'hacs' accesses hass.components.frontend. This is deprecated and will stop working in Home Assistant 2024.9, it should be updated to import functions used from frontend directly at custom_components/hacs/frontend.py, line 68: hass.components.frontend.async_register_built_in_panel(, please create a bug report at https://github.com/hacs/integration/issues
2024-06-28 15:41:39 2024-06-28 13:41:39.248 WARNING (MainThread) [homeassistant.helpers.frame] Detected that custom integration 'hacs' accesses hass.helpers.event. This is deprecated and will stop working in Home Assistant 2024.11, it should be updated to import functions used from event directly at custom_components/hacs/base.py, line 630: self.hass.helpers.event.async_track_time_interval(, please create a bug report at https://github.com/hacs/integration/issues
2024-06-28 15:42:29 2024-06-28 13:42:29.423 WARNING (MainThread) [custom_components.myhome] [MyHomeServer1 gateway - 192.168.1.119] Connection requires a password but none was provided.
2024-06-28 15:42:35 2024-06-28 13:42:35.188 ERROR (MainThread) [homeassistant.config_entries] Error setting up entry MyHomeServer1 Gateway for myhome
2024-06-28 15:42:35 Traceback (most recent call last):
2024-06-28 15:42:35 File "/usr/local/lib/python3.12/site-packages/voluptuous/schema_builder.py", line 272, in __call__
2024-06-28 15:42:35 return self._compiled([], data)
2024-06-28 15:42:35 ^^^^^^^^^^^^^^^^^^^^^^^^
2024-06-28 15:42:35 File "/usr/local/lib/python3.12/site-packages/voluptuous/schema_builder.py", line 561, in validate_dict
2024-06-28 15:42:35 raise er.DictInvalid('expected a dictionary', path)
2024-06-28 15:42:35 voluptuous.error.DictInvalid: expected a dictionary
2024-06-28 15:42:35
2024-06-28 15:42:35 During handling of the above exception, another exception occurred:
2024-06-28 15:42:35
2024-06-28 15:42:35 Traceback (most recent call last):
2024-06-28 15:42:35 File "/usr/src/homeassistant/homeassistant/config_entries.py", line 594, in async_setup
2024-06-28 15:42:35 result = await component.async_setup_entry(hass, self)
2024-06-28 15:42:35 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2024-06-28 15:42:35 File "/config/custom_components/myhome/__init__.py", line 62, in async_setup_entry
2024-06-28 15:42:35 _validated_config = config_schema(yaml.safe_load(await yaml_file.read()))
2024-06-28 15:42:35 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2024-06-28 15:42:35 File "/config/custom_components/myhome/validate.py", line 177, in __call__
2024-06-28 15:42:35 data = super().__call__(data)
2024-06-28 15:42:35 ^^^^^^^^^^^^^^^^^^^^^^
2024-06-28 15:42:35 File "/usr/local/lib/python3.12/site-packages/voluptuous/schema_builder.py", line 276, in __call__
2024-06-28 15:42:35 raise er.MultipleInvalid([e])
2024-06-28 15:42:35 voluptuous.error.MultipleInvalid: expected a dictionary
Any idea what is the underlying issue?
***** UPDATE *****
Reinstalled and now it’s working… No clue about the actual root cause