Missing Z-Wave events in HA

I’m trying to integrate a Z-Wave.Me Wall-C switch into HA. Running OpenZWave Control Panel I can see events sent from the switch but I don’t see any events in the HA logs. I set the log level to Info for HA. Any ideas?

2017-04-22 21:41:47.629 Info, Node002, Received Central Scene set from node 2: scene id=1 in 0 seconds. Sending event notification.
2017-04-22 21:41:47.629 Warning, Node002, No ValueID created for Scene 1

This is my configuration entry. The config_path is the same as OpenZWave Control Panel.

zwave:
  usb_path: /dev/ttyACM0
  config_path: /srv/homeassistant/lib/python3.4/site-packages/libopenzwave-0.3.3-py3.4-linux-armv7l.egg/config

Can you use the scenes for the automations? This is part of the automation config for my NodOn soft remote:


- alias: remote minus key
  trigger:
    - platform: event
      event_type: zwave.scene_activated
      event_data:
        entity_id: bla_remote_22
        scene_id: 40
  action:
    service: homeassistant.turn_on
    entity_id: script.tv_av

This is a log example for when I press a button (output from sudo journalctl -f -u homeassistant):

Apr 23 09:49:40 razberry hass[24376]: 17-04-23 09:49:40 INFO (MainThread) [homeassistant.core] Bus:Handling <Event zwave.scene_activated[L]: object_id=bla_remote_22, scene_id=12, entity_id=bla_remote_22>

It’s a bit different than your log, but perhaps it can be of some use.

1 Like

Unfortunately I don’t get any events in the HA log. Therefore I can’t use it to trigger an automation.