Not able to turn on or off

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!

How are trying to change the state?

Through the ui. It switches, then switches back. However the ui seems to report device status correctly if they are turned on manually

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.

That file is currently empty

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

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?