35 lines
894 B
YAML
35 lines
894 B
YAML
---
|
|
- alias: '[ZWave] Bathroom Master 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 == 26 }}'
|
|
action:
|
|
- service: fan.turn_on
|
|
entity_id:
|
|
- fan.bathroom_master
|
|
|
|
- alias: '[ZWave] Bathroom Master 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 == 26 }}'
|
|
action:
|
|
- service: fan.turn_off
|
|
entity_id:
|
|
- fan.bathroom_master
|