mirror of
https://github.com/GeorgeSG/sarah.git
synced 2026-06-15 09:12:57 +00:00
34 lines
957 B
YAML
34 lines
957 B
YAML
automation:
|
|
- alias: Media · Sonos · Volume up on bathroom switch click
|
|
trigger:
|
|
platform: event
|
|
event_type: zha_event
|
|
event_data:
|
|
device_ieee: !secret bathroom_switch_ieee
|
|
command: single
|
|
action:
|
|
- service: media_player.volume_set
|
|
entity_id: media_player.bathroom
|
|
data_template:
|
|
volume_level: >-
|
|
|
|
{% if state_attr('media_player.bathroom', 'volume_level')|float > 0.5 %}
|
|
0.2
|
|
{% else %}
|
|
0.55
|
|
{% endif %}
|
|
|
|
- alias: Youtube · play latest pds on bathroom switch dobule click
|
|
trigger:
|
|
platform: event
|
|
event_type: zha_event
|
|
event_data:
|
|
device_ieee: !secret bathroom_switch_ieee
|
|
command: double
|
|
action:
|
|
- service: media_player.volume_set
|
|
entity_id: media_player.bathroom
|
|
data:
|
|
volume_level: 0.55
|
|
- service: script.youtube_play_latest_pds
|