You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed zwave-js-ui as docker container and attempted to attach my Aeon Gen5 stick into it. The only device i was able to see properly in the UI is controller. The rest of the devices were listed as Unknown. I was also able to see message from my zwave network recorded in the logs.
Any suggestions what did i miss? how can see devices properly in the zwave-js-ui?
Below is the log fragment showing Unknown devices and messages exchanged in my network.
The docker-compose is under the log
Thanks
2024-01-17T14:06:13.124Z DRIVER « [RES] [GetControllerId]
home ID: 0xd3b648f3
own node ID: 1
2024-01-17T14:06:13.135Z CNTRLR received controller IDs:
home ID: 0xd3b648f3
own node ID: 1
2024-01-17T14:06:13.146Z DRIVER all queues idle
2024-01-17T14:06:13.251Z CNTRLR Performing soft reset...
2024-01-17T14:06:13.257Z DRIVER all queues busy
2024-01-17T14:06:13.265Z SERIAL » 0x01030008f4 (5 bytes)
2024-01-17T14:06:13.269Z DRIVER » [REQ] [SoftReset]
2024-01-17T14:06:13.277Z SERIAL « [ACK] (0x06)
2024-01-17T14:06:13.285Z CNTRLR Waiting for the controller to reconnect...
2024-01-17T14:06:13.288Z DRIVER all queues idle
2024-01-17T14:06:14.788Z CNTRLR Re-opening serial port...
2024-01-17T14:06:15.803Z CNTRLR Waiting for the Serial API to start...
2024-01-17T14:06:19.262Z SERIAL « 0x010c0004002e063105012200ca02 (14 bytes)
2024-01-17T14:06:19.268Z SERIAL » [ACK] (0x06)
2024-01-17T14:06:19.275Z CNTRLR [Node 046] is unknown - discarding received command...
2024-01-17T14:06:19.280Z DRIVER « [Node 046] [REQ] [ApplicationCommand] [discarded]
└─[MultilevelSensorCCReport]
type: Air temperature
scale: Celsius
value: 20.2
~/zwave $ cat docker-compose.yml
version: "3.7"
services:
zwave-js-ui:
container_name: zwave-js-ui
image: zwavejs/zwave-js-ui:latest
restart: unless-stopped
tty: true
stop_signal: SIGINT
environment:
- SESSION_SECRET=mySecretSession
- TZ=Europe/Amsterdam
devices:
- '/dev/serial/by-id/usb-0658_0200-if00:/dev/zwave'
volumes:
- ./store:/usr/src/app/store
ports:
- "8091:8091" # port for web interface
- "3000:3000" # port for Z-Wave JS websocket server
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi guys,
I installed zwave-js-ui as docker container and attempted to attach my Aeon Gen5 stick into it. The only device i was able to see properly in the UI is controller. The rest of the devices were listed as Unknown. I was also able to see message from my zwave network recorded in the logs.
Any suggestions what did i miss? how can see devices properly in the zwave-js-ui?
Below is the log fragment showing Unknown devices and messages exchanged in my network.
The docker-compose is under the log
Thanks
2024-01-17T14:06:13.124Z DRIVER « [RES] [GetControllerId]
home ID: 0xd3b648f3
own node ID: 1
2024-01-17T14:06:13.135Z CNTRLR received controller IDs:
home ID: 0xd3b648f3
own node ID: 1
2024-01-17T14:06:13.146Z DRIVER all queues idle
2024-01-17T14:06:13.251Z CNTRLR Performing soft reset...
2024-01-17T14:06:13.257Z DRIVER all queues busy
2024-01-17T14:06:13.265Z SERIAL » 0x01030008f4 (5 bytes)
2024-01-17T14:06:13.269Z DRIVER » [REQ] [SoftReset]
2024-01-17T14:06:13.277Z SERIAL « [ACK] (0x06)
2024-01-17T14:06:13.285Z CNTRLR Waiting for the controller to reconnect...
2024-01-17T14:06:13.288Z DRIVER all queues idle
2024-01-17T14:06:14.788Z CNTRLR Re-opening serial port...
2024-01-17T14:06:15.803Z CNTRLR Waiting for the Serial API to start...
2024-01-17T14:06:19.262Z SERIAL « 0x010c0004002e063105012200ca02 (14 bytes)
2024-01-17T14:06:19.268Z SERIAL » [ACK] (0x06)
2024-01-17T14:06:19.275Z CNTRLR [Node 046] is unknown - discarding received command...
2024-01-17T14:06:19.280Z DRIVER « [Node 046] [REQ] [ApplicationCommand] [discarded]
└─[MultilevelSensorCCReport]
type: Air temperature
scale: Celsius
value: 20.2
~/zwave $ cat docker-compose.yml
version: "3.7"
services:
zwave-js-ui:
container_name: zwave-js-ui
image: zwavejs/zwave-js-ui:latest
restart: unless-stopped
tty: true
stop_signal: SIGINT
environment:
- SESSION_SECRET=mySecretSession
- TZ=Europe/Amsterdam
devices:
- '/dev/serial/by-id/usb-0658_0200-if00:/dev/zwave'
volumes:
- ./store:/usr/src/app/store
ports:
- "8091:8091" # port for web interface
- "3000:3000" # port for Z-Wave JS websocket server
Beta Was this translation helpful? Give feedback.
All reactions