Add basic bedroom switch automations

This commit is contained in:
2020-05-13 21:02:45 +03:00
parent aec357b9b3
commit 296f2e3169
4 changed files with 49 additions and 0 deletions
@@ -69,3 +69,37 @@ automation:
{% else %}
100
{% endif %}
- alias: Lighting · Master bedroom · Toggle lights on switch single click
trigger:
platform: event
event_type: zha_event
event_data:
device_ieee: !secret master_bedroom_switch_ieee
command: single
action:
- service: light.toggle
data_template:
entity_id: light.master_bedroom_main
brightness_pct: >-
{% if is_state('input_select.house_mode', 'night') %}
40
{% else %}
100
{% endif %}
- alias: Lighting · Master bedroom · Toggle ambient lights on switch double click
trigger:
platform: event
event_type: zha_event
event_data:
device_ieee: !secret master_bedroom_switch_ieee
command: double
action:
- service: light.toggle
data_template:
entity_id:
- light.bedside
- light.bed_led
brightness_pct: 100
+11
View File
@@ -32,3 +32,14 @@ automation:
action:
- service: media_player.media_play_pause
entity_id: media_player.living_room
- alias: Music · Master bedroom · Play pause on switch hold
trigger:
platform: event
event_type: zha_event
event_data:
device_ieee: !secret master_bedroom_switch_ieee
command: hold
action:
- service: media_player.media_play_pause
entity_id: media_player.master_bedroom