@Tediore I did, the config check was green. I wanted to get this minimum viable product in testing with the family before upgrading the hardware (understanding some slowness would be there).
Log:
2019-10-26 10:14:46 WARNING (MainThread) [homeassistant.loader] You are using a custom integration for hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you do experience issues with Home Assistant.
2019-10-26 10:14:50 WARNING (Recorder) [homeassistant.components.recorder] Ended unfinished session (id=24 from 2019-10-26 13:43:57.286834)
2019-10-26 10:15:05 ERROR (MainThread) [homeassistant.config_entries] Error setting up entry Z-Wave for zwave
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/openzwave/option.py", line 78, in __init__
raise ZWaveException(u"Can't find device %s : %s" % (device, traceback.format_exception(*sys.exc_info())))
openzwave.object.ZWaveException: "Zwave Generic Exception : Can't find device /dev/ttyACM1 : ['NoneType: None\\n']"
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/config_entries.py", line 190, in async_setup
hass, self
File "/usr/src/homeassistant/homeassistant/components/zwave/__init__.py", line 366, in async_setup_entry
config_path=config.get(CONF_CONFIG_PATH),
File "/usr/local/lib/python3.7/site-packages/openzwave/option.py", line 81, in __init__
raise ZWaveException(u"Error when retrieving device %s : %s" % (device, traceback.format_exception(*sys.exc_info())))
openzwave.object.ZWaveException: 'Zwave Generic Exception : Error when retrieving device /dev/ttyACM1 : [\'Traceback (most recent call last):\\n\', \' File "/usr/local/lib/python3.7/site-packages/openzwave/option.py", line 78, in __init__\\n raise ZWaveException(u"Can\\\'t find device %s : %s" % (device, traceback.format_exception(*sys.exc_info())))\\n\', \'openzwave.object.ZWaveException: "Zwave Generic Exception : Can\\\'t find device /dev/ttyACM1 : [\\\'NoneType: None\\\\\\\\n\\\']"\\n\']'
2019-10-26 10:15:05 WARNING (MainThread) [homeassistant.setup] Setup of google is taking over 10 seconds.
2019-10-26 10:15:05 ERROR (MainThread) [homeassistant.setup] Error during setup of component zoneminder
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/urllib3/connection.py", line 157, in _new_conn
(self._dns_host, self.port), self.timeout, **extra_kw
File "/usr/local/lib/python3.7/site-packages/urllib3/util/connection.py", line 84, in create_connection
raise err
File "/usr/local/lib/python3.7/site-packages/urllib3/util/connection.py", line 74, in create_connection
sock.connect(sa)
OSError: [Errno 113] Host is unreachable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/urllib3/connectionpool.py", line 672, in urlopen
chunked=chunked,
File "/usr/local/lib/python3.7/site-packages/urllib3/connectionpool.py", line 387, in _make_request
conn.request(method, url, **httplib_request_kw)
File "/usr/local/lib/python3.7/http/client.py", line 1244, in request
self._send_request(method, url, body, headers, encode_chunked)
File "/usr/local/lib/python3.7/http/client.py", line 1290, in _send_request
self.endheaders(body, encode_chunked=encode_chunked)
File "/usr/local/lib/python3.7/http/client.py", line 1239, in endheaders
self._send_output(message_body, encode_chunked=encode_chunked)
File "/usr/local/lib/python3.7/http/client.py", line 1026, in _send_output
self.send(msg)
File "/usr/local/lib/python3.7/http/client.py", line 966, in send
self.connect()
File "/usr/local/lib/python3.7/site-packages/urllib3/connection.py", line 184, in connect
conn = self._new_conn()
File "/usr/local/lib/python3.7/site-packages/urllib3/connection.py", line 169, in _new_conn
self, "Failed to establish a new connection: %s" % e
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x72b52390>: Failed to establish a new connection: [Errno 113] Host is unreachable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/requests/adapters.py", line 449, in send
timeout=timeout
File "/usr/local/lib/python3.7/site-packages/urllib3/connectionpool.py", line 720, in urlopen
method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
File "/usr/local/lib/python3.7/site-packages/urllib3/util/retry.py", line 436, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='192.168.148.3', port=9080): Max retries exceeded with url: /zm/index.php (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x72b52390>: Failed to establish a new connection: [Errno 113] Host is unreachable'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/setup.py", line 171, in _async_setup_component
component.setup, hass, processed_config # type: ignore
File "/usr/local/lib/python3.7/concurrent/futures/thread.py", line 57, in run
result = self.fn(*self.args, **self.kwargs)
File "/usr/src/homeassistant/homeassistant/components/zoneminder/__init__.py", line 78, in setup
success = zm_client.login() and success
File "/usr/local/lib/python3.7/site-packages/zoneminder/zm.py", line 46, in login
data=login_post, verify=self._verify_ssl)
File "/usr/local/lib/python3.7/site-packages/requests/api.py", line 116, in post
return request('post', url, data=data, json=json, **kwargs)
File "/usr/local/lib/python3.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/usr/local/lib/python3.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/usr/local/lib/python3.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/usr/local/lib/python3.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPConnectionPool(host='192.168.148.3', port=9080): Max retries exceeded with url: /zm/index.php (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x72b52390>: Failed to establish a new connection: [Errno 113] Host is unreachable'))
2019-10-26 10:15:15 WARNING (MainThread) [homeassistant.setup] Setup of person is taking over 10 seconds.
2019-10-26 10:15:21 WARNING (MainThread) [homeassistant.components.remote] Setup of platform harmony is taking over 10 seconds.
2019-10-26 10:15:26 ERROR (MainThread) [homeassistant.setup] Unable to prepare setup for platform zoneminder.camera: Unable to set up component.
2019-10-26 19:32:39 ERROR (MainThread) [homeassistant.components.automation] Error while executing automation automation.watch_tv. Service not found for call_service at pos 1: Unable to find service input_boolean/turn_on
2019-10-26 19:32:59 ERROR (MainThread) [homeassistant.components.automation] Error while executing automation automation.watch_shield. Service not found for call_service at pos 1: Unable to find service input_boolean/turn_on
2019-10-27 03:35:33 ERROR (Thread-6) [pychromecast.socket_client] [Home group:42298] Error reading from socket.
2019-10-27 03:35:34 WARNING (Thread-6) [pychromecast.socket_client] [Home group:42298] Error communicating with socket, resetting connection
2019-10-27 03:36:03 WARNING (Thread-3) [pychromecast.socket_client] [Kitchen speaker:8009] Heartbeat timeout, resetting connection
2019-10-27 03:56:04 WARNING (Thread-5) [pychromecast.socket_client] [Master Bedroom speaker:8009] Heartbeat timeout, resetting connection
2019-10-27 09:00:29 ERROR (MainThread) [homeassistant.components.automation] Error while executing automation automation.watch_tv. Service not found for call_service at pos 1: Unable to find service input_boolean/turn_on
2019-10-28 04:07:12 ERROR (Thread-6) [pychromecast.socket_client] [Home group:42298] Error reading from socket.
2019-10-28 04:07:12 WARNING (Thread-6) [pychromecast.socket_client] [Home group:42298] Error communicating with socket, resetting connection
2019-10-28 04:07:37 WARNING (Thread-3) [pychromecast.socket_client] [Kitchen speaker:8009] Heartbeat timeout, resetting connection
2019-10-28 04:38:14 WARNING (Thread-5) [pychromecast.socket_client] [Master Bedroom speaker:8009] Heartbeat timeout, resetting connection
2019-10-28 06:00:48 ERROR (MainThread) [homeassistant.components.automation] Error while executing automation automation.watch_tv. Service not found for call_service at pos 1: Unable to find service input_boolean/turn_on
2019-10-28 10:34:54 ERROR (MainThread) [aioharmony.hubconnector] 192.168.148.197: Connection timed out for hub 14347800
2019-10-28 14:34:08 ERROR (MainThread) [homeassistant.components.automation] Error while executing automation automation.watch_tv. Service not found for call_service at pos 1: Unable to find service input_boolean/turn_on
2019-10-28 18:51:21 ERROR (MainThread) [homeassistant.components.automation] Error while executing automation automation.watch_tv. Service not found for call_service at pos 1: Unable to find service input_boolean/turn_on
2019-10-29 00:39:46 ERROR (MainThread) [aiohttp.server] Error handling request
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/aiohttp/web_protocol.py", line 275, in data_received
messages, upgraded, tail = self._request_parser.feed_data(data)
File "aiohttp\_http_parser.pyx", line 523, in aiohttp._http_parser.HttpParser.feed_data
aiohttp.http_exceptions.BadStatusLine: invalid HTTP method
2019-10-29 03:49:19 ERROR (Thread-6) [pychromecast.socket_client] [Home group:42298] Error reading from socket.
2019-10-29 03:49:19 WARNING (Thread-6) [pychromecast.socket_client] [Home group:42298] Error communicating with socket, resetting connection
2019-10-29 03:49:44 WARNING (Thread-3) [pychromecast.socket_client] [Kitchen speaker:8009] Heartbeat timeout, resetting connection
2019-10-29 03:56:06 WARNING (Thread-5) [pychromecast.socket_client] [Master Bedroom speaker:8009] Heartbeat timeout, resetting connection
2019-10-29 14:51:37 ERROR (MainThread) [homeassistant.components.automation] Error while executing automation automation.watch_tv. Service not found for call_service at pos 1: Unable to find service input_boolean/turn_on
2019-10-29 18:11:06 ERROR (MainThread) [homeassistant.components.automation] Error while executing automation automation.watch_tv. Service not found for call_service at pos 1: Unable to find service input_boolean/turn_on
2019-10-29 19:28:34 ERROR (MainThread) [homeassistant.components.automation] Error while executing automation automation.watch_shield. Service not found for call_service at pos 1: Unable to find service input_boolean/turn_on
2019-10-29 20:01:01 ERROR (MainThread) [homeassistant.components.automation] Error while executing automation automation.watch_tv. Service not found for call_service at pos 1: Unable to find service input_boolean/turn_on
2019-10-29 21:05:25 ERROR (MainThread) [homeassistant.components.automation] Error while executing automation automation.watch_shield. Service not found for call_service at pos 1: Unable to find service input_boolean/turn_on
2019-10-30 02:55:18 WARNING (Thread-5) [pychromecast.socket_client] [Master Bedroom speaker:8009] Heartbeat timeout, resetting connection
2019-10-30 04:05:24 ERROR (Thread-6) [pychromecast.socket_client] [Home group:42298] Error reading from socket.
2019-10-30 04:05:24 WARNING (Thread-6) [pychromecast.socket_client] [Home group:42298] Error communicating with socket, resetting connection
2019-10-30 04:05:49 WARNING (Thread-3) [pychromecast.socket_client] [Kitchen speaker:8009] Heartbeat timeout, resetting connection
2019-10-30 06:24:31 ERROR (MainThread) [homeassistant.components.automation] Error while executing automation automation.watch_tv. Service not found for call_service at pos 1: Unable to find service input_boolean/turn_on
I fixed the z-wave following this: ZWave stick USB port now configurable via GUI?