Hi,
I am new to the Community. I’ve had Home-Assistant configured with my door lock and my HVAC which are both Z-wave devices. I recently added a Light switch that was peered with my Vera to Home Assistant. It’s working fine, but I have a “three way switch” that I am trying to use to control the same light that the switch operates.
I had this working in my Vera, but I can’t seem to figure out how to do this with HA. I added the switch, and it shows up in the logs when I press a key, such as:
Jun 25 11:03:43 raspberrypi hass[653]: #033[32m2017-06-25 11:03:43 INFO (MainThread) [homeassistant.core] Bus:Handling <Event zwave.node_event[L]: basic_level=255, object_id=linear_wt00z1_3way_wall_accessory_switch_13>#033[0m
Jun 25 11:03:44 raspberrypi hass[653]: #033[32m2017-06-25 11:03:44 INFO (MainThread) [homeassistant.core] Bus:Handling <Event **zwave.node_event[**L]: basic_level=0, object_id=linear_wt00z1_3way_wall_accessory_switch_13>#033[0m
What I was thinking is using an automation that would turn on the kitchen light when the top button of the switch was pressed, “basic_level=255”, but I don’t think Zwave_events are triggering anything in HA.
here is the automation I created, and I just cannot seem to get it working.
hide_entity: True
trigger:
platform: event
event_type: zwave.node_event
event_data:
object_id: 'light.linear_wt00z1_3way_wall_accessory_switch_level_13_0'
basic_level: '255'
action:
service: light.turn_on
entity_id: 'light.kitchen_light_switch_level_11_0'```
Anyone have any suggestions on how to get this working?