Hello all, I am struggling to figure out zwave scenes.
I have:
- HASSIO running 0.117.5
- AEON Labs ZW090 Z-Stick Gen5 US
- Innovelli LZW30 (Black On/Off) switch
I have tested Home Assistant with
- HASS OpenZWave 1.6 Beta
- ZWave2MQTT
- Standard HASS ZWave 1.4
I found the latter to be the most responsive of the three so that is how I am currently configured.
I followed this guide https://support.inovelli.com/portal/en/kb/articles/installation-setup-lzw30-on-off-black-series-gen-2-home-assistant-hass-io to import the most recent Innovell XML files and redirect the ZWave configs to /config/open-zwave/config
this fixed my unkown switch issue. The switch snows up with the correct device info and works fine. My confusion comes with Scenes.
I am able to go to Developer Tools > Services and run service
`zwave.set_config_parameter`
`node_id: 9`
`parameter: 5`
`value: 80`
This changes my LED to Green.
But I can’t figure out how to get scene events FROM the switch.
I created automation like so:
alias: Switch - Laundry Config Familyroom
description: ''
trigger:
- platform: event
event_type: zwave.scene_activated
event_data:
node_id: 9
scene_data: 7680
scene_id: 3
condition: []
action:
- service: light.toggle
data: {}
entity_id: light.family_room
mode: single
My research says that ID-3 Data-7680 should be the config button on the switch. And that when that is pressed it should then toggle my family room lights.
However, I never get anything to happen.
I don’t see anything in the zwave log.
Nor do I see anything when I listen for zwave.scene_activated
event on the Developer Tools > Events
Lots of post talk about adding or removing lines from the zwcfg_0xc72b1d5f.xml file. I am confused how this file is used as configs have been redirected to the open-zwave/config directory.
I am also confused about how I would need to manually add lines to a file after pulling the entire OZW repo with over a thousand device-specific XML config files.
Am I not seeing any incoming scene events because I am missing lines from the XML?
Which lines and where should the XML file live, HASS root or OZW Config?
I also have two other switches a Red On/Off and a Red Dimmer. I want to get all the necessary configs for all three switch types.