Sulsa
(Aaron)
October 22, 2018, 11:49am
1
I’m running Home Assistant in docker on a Raspberry pi (new installation), Aeotec Stick. I am able to see device status, but not able to change it.
zwave:
usb_path: /dev/ttyACM0
polling_interval: 30000
autoheal: true
device_config: !include zwave_device_config.yaml
The switch shows a state change for a moment, then reverts back. Any pointers where to check?
Thanks!
finity
October 22, 2018, 9:59pm
2
How are trying to change the state?
Sulsa
(Aaron)
October 23, 2018, 2:20am
3
Through the ui. It switches, then switches back. However the ui seems to report device status correctly if they are turned on manually
ptrsnja
(Ptrsnja)
October 23, 2018, 3:10am
4
Sounds like an issue with the device configuration, rather than the z wave stick. How have you configured the device in zwave-device-config.yaml
? If you have a separate state and command topic, you’ve likely got the command topic configured incorrectly.
Sulsa
(Aaron)
October 23, 2018, 3:13am
5
That file is currently empty
Sulsa
(Aaron)
October 26, 2018, 1:38am
6
Not sure if it helps or not, but this si what is in my docker-compose.yaml
homeassistant:
container_name: home-assistant
image: homeassistant/raspberrypi3-homeassistant:0.80.3
ports:
- 0.0.0.0:8123:8123
network_mode: “host”
volumes:
- /opt/homeassistant:/config
- /etc/localtime:/etc/localtime:ro
- /etc/letsencrypt:/etc/letsencrypt:ro
devices:
- /dev/ttyACM0:/dev/ttyACM0:rwm
restart: always
depends_on:
influxdb:
condition: service_healthy
mosquitto:
condition: service_started
healthcheck:
test: [“CMD”, “curl”, “-f”, “http://127.0.0.1:8123 ”]
interval: 30s
timeout: 10s
Sulsa
(Aaron)
November 1, 2018, 12:34am
7
Do you think it might be a permissions thing where the user is not able to write changes somewhere? Read works fine. Any idea how I can check?