Hi!
I am about to move from my old RPi2 o an HP SFF Prodesk i3 machine because performance and SD-card-issues…
Can you pleace advice me…
I have installed:
Ubuntu 18.04.2 LTS
Docker
Followed: https://www.home-assistant.io/docs/installation/docker/
Went for Docker-compose. And the documentation regarding the “Exposing device”. But I’m not able to add the Z-Wave service in HA… USB location seems to be wrong…
$ ls -1tr /dev/tty*|tail -n 1
gives me:
/dev/tty
This seems to be faulty? or?..
my docker-compose.yml:
version: ‘3’
services:
homeassistant:
container_name: home-assistant
image: homeassistant/home-assistant
volumes:
- /home/sam/homeassistant:/config
- /etc/localtime:/etc/localtime:ro
devices:
- /dev/tty:/dev/tty
restart: always
network_mode: host
When I add a z-wave service I enter: /dev/tty and the secret network key. It succeded!
I restart Home Assistant from the Server Management, and also with docker-compose restart.
If I try to do a Add Node Secure command, I get:
Failed to call service zwave/add_node_secure. Service not found.
It seems that the USB communications is not ok anyways…
Where shall I start to look?
At my old RPi2 i had no docker… and this path:
zwave:
usb_path: /dev/serial/by-id/usb-0658_0200-if00
But if I use that at this machine i get “Z-Wave validation failed. Is the path to the USB stick correct?”, when I try to add the integration Z-Wave.
Please advice me…!