Z wave configuration

image

I got this wrong message when I add:
zwave:
usb_path: /dev/ttyACM0

to my configuration.yaml.

I use Raspberry Pi 3 with a RaZberry2 EU gen5 card.

How can i solve this?

Edit: I use two spaces before “usb-path” and one space after.

Here’s mine:

zwave:
  usb_path: /dev/ttyACM0
  config_path: /home/hass/homeassistant/lib/python3.5/site-packages/python_openzwave/ozw_config/config
  network_key: <redacted>
  polling_interval: 60000

Make sure the user running HomeAssistant is a member of the dialout group (if appropriate in your setup):

root@freenas:/home/hass/.homeassistant# ls -la /dev/ttyACM0
crw-rw---- 1 root dialout 166, 0 Feb 19 02:49 /dev/ttyACM0
root@freenas:/home/hass/.homeassistant# id hass
uid=1001(hass) gid=100(users) groups=100(users),20(dialout),27(sudo),116(ssh),121(bluetooth)

When in doubt, refer here:

It got me going.