-
I moved my Raspberry from "stretch" to "bullseye". After new setup, zwabve-js-ui won't work anymore.
my docker-compose config is still same as on "stretch":
raspi config should be ok. Device /dev/ttyAMA0 is availabe. |
Beta Was this translation helpful? Give feedback.
Replies: 11 comments 2 replies
-
Try to disable soft reset using env var: |
Beta Was this translation helpful? Give feedback.
-
Still same. Disable soft reset didn't change anything. |
Beta Was this translation helpful? Give feedback.
-
Try replacing |
Beta Was this translation helpful? Give feedback.
-
ENV var removed. Mhmmm... there is no ID_SERIAL for ttyAMA0.
maybe because it's not an USB device, but an expansion board for RPi which uses gpio. |
Beta Was this translation helpful? Give feedback.
-
@qaldak Is there any fixed id path for that serial device? the problem is that using ttyACM0 could fail as zwave-js does a soft reset on startup and that could cause that id to change (for ex. ttyACM0 becomes ttyACM1). That's why we suggest to use that path instead, try to check in |
Beta Was this translation helpful? Give feedback.
-
Have you checked the |
Beta Was this translation helpful? Give feedback.
-
No, there is any fixed id path. config.txt: uart, i2c and spi are enabled. What other way can I check if the device is working? |
Beta Was this translation helpful? Give feedback.
-
I'm using the following:
But I'm also using Ubuntu Core and the snap version, so I only have to connect the serial-port and it's automatically identified by ZUI. So I can't help you any futher.. I know @AlCalzone uses these boards too, and I guess under Debian based system (e.g rapsbian). |
Beta Was this translation helpful? Give feedback.
-
Delete that. You have a serial console on the GPIO, preventing communication with the zwave controller. |
Beta Was this translation helpful? Give feedback.
-
Many thanks for all your inputs, guys. Problem was: additionaly to enable_uart=1 (ttyS0 (mini UART device)), I had explicity ttyAMA0 console activated. So I did following: /boot/config.txt set
Now it works fine. |
Beta Was this translation helpful? Give feedback.
-
@AlCalzone you know the reason/benefit of setting the |
Beta Was this translation helpful? Give feedback.
Many thanks for all your inputs, guys.
I solved the problem!
Problem was: additionaly to enable_uart=1 (ttyS0 (mini UART device)), I had explicity ttyAMA0 console activated.
So I did following:
/boot/cmdline.txt removed
console=ttyAMA0,115200
/boot/config.txt set
Now it works fine.