Hello,
New user here (from Smartthings) and just starting to figure out what it will take to begin a migration.
I have a Nortek husbzb-1. I have done a bit of reading and watched a ton of YouTube videos to guide me through adding Z-wave and ZigBee. I am running HA on Windows 10 with VirtualBox and had a little bit of trouble with drivers and getting the VM to see the USB stick. I think I have that worked out because I can now see it listed under hardware. I had some trouble with Z-Wave at first but adding it in the configuration yaml worked and it seems good now. While going through the process to add the Zigbee I can see the device but each time it fails with an “unknown error”.
I haven’t seen many other folks mention anything like this. I am tempted to start over from scratch because haven’t done much yet just explored how it works. But any help would be appreciated.
I see this error in the log:
Logger: aiohttp.server
Source: components/zha/config_flow.py:130
First occurred: January 26, 2021, 11:45:33 PM (1 occurrences)
Last logged: January 26, 2021, 11:45:33 PM
Error handling request
Traceback (most recent call last):
File “/usr/local/lib/python3.8/site-packages/aiohttp/web_protocol.py”, line 422, in _handle_request
resp = await self._request_handler(request)
File “/usr/local/lib/python3.8/site-packages/aiohttp/web_app.py”, line 499, in _handle
resp = await handler(request)
File “/usr/local/lib/python3.8/site-packages/aiohttp/web_middlewares.py”, line 118, in impl
return await handler(request)
File “/usr/src/homeassistant/homeassistant/components/http/security_filter.py”, line 56, in security_filter_middleware
return await handler(request)
File “/usr/src/homeassistant/homeassistant/components/http/request_context.py”, line 18, in request_context_middleware
return await handler(request)
File “/usr/src/homeassistant/homeassistant/components/http/ban.py”, line 72, in ban_middleware
return await handler(request)
File “/usr/src/homeassistant/homeassistant/components/http/auth.py”, line 127, in auth_middleware
return await handler(request)
File “/usr/src/homeassistant/homeassistant/components/http/view.py”, line 129, in handle
result = await result
File “/usr/src/homeassistant/homeassistant/components/config/config_entries.py”, line 169, in post
return await super().post(request, flow_id)
File “/usr/src/homeassistant/homeassistant/components/http/data_validator.py”, line 60, in wrapper
result = await method(view, request, *args, **kwargs)
File “/usr/src/homeassistant/homeassistant/helpers/data_entry_flow.py”, line 106, in post
result = await self._flow_mgr.async_configure(flow_id, data)
File “/usr/src/homeassistant/homeassistant/data_entry_flow.py”, line 155, in async_configure
result = await self._async_handle_step(flow, cur_step[“step_id”], user_input)
File “/usr/src/homeassistant/homeassistant/data_entry_flow.py”, line 213, in _async_handle_step
result: Dict = await getattr(flow, method)(user_input)
File “/usr/src/homeassistant/homeassistant/components/zha/config_flow.py”, line 59, in async_step_user
auto_detected_data = await detect_radios(dev_path)
File “/usr/src/homeassistant/homeassistant/components/zha/config_flow.py”, line 130, in detect_radios
if await radio.controller.probe(dev_config):
File “/usr/local/lib/python3.8/site-packages/zigpy_deconz/api.py”, line 380, in probe
await asyncio.wait_for(api._probe(), timeout=PROBE_TIMEOUT)
File “/usr/local/lib/python3.8/asyncio/tasks.py”, line 494, in wait_for
return fut.result()
File “/usr/local/lib/python3.8/site-packages/zigpy_deconz/api.py”, line 395, in _probe
await self.connect()
File “/usr/local/lib/python3.8/site-packages/zigpy_deconz/api.py”, line 245, in connect
self._uart = await zigpy_deconz.uart.connect(self._config, self)
File “/usr/local/lib/python3.8/site-packages/zigpy_deconz/uart.py”, line 139, in connect
_, protocol = await serial_asyncio.create_serial_connection(
File “/usr/local/lib/python3.8/site-packages/serial_asyncio/init.py”, line 445, in create_serial_connection
serial_instance = serial.serial_for_url(*args, **kwargs)
File “/usr/local/lib/python3.8/site-packages/serial/init.py”, line 90, in serial_for_url
instance.open()
File “/usr/local/lib/python3.8/site-packages/serial/serialposix.py”, line 336, in open
self._update_dtr_state()
File “/usr/local/lib/python3.8/site-packages/serial/serialposix.py”, line 713, in _update_dtr_state
fcntl.ioctl(self.fd, TIOCMBIS, TIOCM_DTR_str)
TimeoutError: [Errno 110] Operation timed out
And I also see this warning:
Logger: zigpy_znp.zigbee.application
Source: /usr/local/lib/python3.8/site-packages/zigpy_znp/zigbee/application.py:172
First occurred: January 26, 2021, 11:45:12 PM (1 occurrences)
Last logged: January 26, 2021, 11:45:12 PM
Failed to probe ZNP radio with config {‘path’: ‘/dev/serial/by-id/usb-Silicon_Labs_HubZ_Smart_Home_Controller_C1300983-if01-port0’, ‘flow_control’: None, ‘baudrate’: 115200}
Traceback (most recent call last):
File “/usr/local/lib/python3.8/site-packages/zigpy_znp/zigbee/application.py”, line 167, in probe
await znp.connect()
File “/usr/local/lib/python3.8/site-packages/zigpy_znp/api.py”, line 199, in connect
self._uart = await uart.connect(self._config[conf.CONF_DEVICE], self)
File “/usr/local/lib/python3.8/site-packages/zigpy_znp/uart.py”, line 170, in connect
transport.serial.rts = False
File “/usr/local/lib/python3.8/site-packages/serial/serialutil.py”, line 463, in rts
self._update_rts_state()
File “/usr/local/lib/python3.8/site-packages/serial/serialposix.py”, line 708, in _update_rts_state
fcntl.ioctl(self.fd, TIOCMBIC, TIOCM_RTS_str)
TimeoutError: [Errno 110] Operation timed out