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

35 lines
914 B
YAML

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