Hi all,
I have several Z-Wave switches configured to activate a scene, when the switches are pressed. I’d like to handle multiple keypress types in a single automation, but this does not seem to work:
automation:
trigger:
- platform: event
event_type: zwave_js_value_notification
event_data:
node_id: 33
label: Scene 001
value:
- KeyHeldDown
- KeyPressed2x
Instead I need to define a separate trigger for KeyHeldDown
and another one for KeyPressed2x
.
Nevertheless, this same principle works for event_type
, user_id
, entity_id
, … as the automation event trigger documentation shows.
Is there a possibility that I can use this kind of notation for a Z-Wave event trigger?
Thank you