Files
hassio-configuration/configuration/automation/switch_light_bathroom_living.yaml
2025-02-07 12:46:24 -05:00

35 lines
924 B
YAML

---
- alias: '[ZWave] Bathroom Living Room Switch Single Tap UP'
initial_state: "true"
trigger:
- platform: event
event_type: zwave_js_value_notification
event_data:
property: "scene"
property_key: "002"
value: "KeyPressed"
condition:
condition: template
value_template: '{{ trigger.event.data.node_id == 13 }}'
action:
- service: light.turn_on
entity_id:
- light.bathroom_living_room_01
- alias: '[ZWave] Bathroom Living Room Switch Single Tap DOWN'
initial_state: 'true'
trigger:
- platform: event
event_type: zwave_js_value_notification
event_data:
property: "scene"
property_key: "001"
value: "KeyPressed"
condition:
condition: template
value_template: '{{ trigger.event.data.node_id == 13 }}'
action:
- service: light.turn_off
entity_id:
- light.bathroom_living_room_01