I have a raspberry Pi 3 running the latest version of Rasbian light running HASS IO supervised in docker containers and new Razberry. I am unable to connect to the Razberry using the zwave2mqtt add on. I was able to get to work once but have not been able to reproduce my steps after dabbling with Zway.
From a fresh install of Rasbian Lite here is what I have done.
Enable SSH
Add the following parameters to the bottom of the sudo nano /boot/config.txt file.
dtoverlay=disable-bt
Reboot
Install Docker on Pi
Run
sudo apt-get update && sudo apt-get upgrade -y
sudo apt-get install network-manager apparmor-utils jq -y
sudo reboot
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh ./get-docker.sh
sudo usermod -aG docker {username}
sudo chmod 666 /var/run/docker.sock
sudo apt-get update && sudo apt-get upgrade -y
Disable hciuart
sudo systemctl disable hciuart
Reboot
Install HASS in a Container
Run
sudo curl -Lo installer.sh https://raw.githubusercontent.com/home-assistant/supervised-installer/master/installer.sh
sudo bash installer.sh --machine raspberrypi3
y
Attach Razberry to Pi
Install Z-WaveJS2MQTT Add On
Point Add On to /dev/tty/AMA0
and click save
At this point i get the follow the error:
INFO ZWAVE: Controller status: Driver: Failed to initialize the driver: Timeout while waiting for an ACK from the controller
Any advice on what setting I may still be missing or incorrectly using?