79 строки
2.0 KiB
YAML
79 строки
2.0 KiB
YAML
ambilight_off:
|
|
alias: Ambilight schwarz schalten
|
|
sequence:
|
|
- service: light.turn_on
|
|
data:
|
|
entity_id: light.ambilight
|
|
rgb_color: [0,0,0]
|
|
brightness: 0
|
|
|
|
livingroom_music_on:
|
|
alias: Wohnzimmer Musik - An
|
|
sequence:
|
|
- service: switch.turn_on
|
|
data:
|
|
entity_id: switch.harmony_music_bt
|
|
- service: script.livingroom_music_scenario_on
|
|
|
|
livingroom_music_scenario_on:
|
|
alias: Wohnzimmer Musik Szenario - An
|
|
sequence:
|
|
- service: switch.turn_on # todo: nur triggern wenn noch off
|
|
data:
|
|
entity_id: switch.harmony_music_bt
|
|
- service: light.turn_on
|
|
data:
|
|
entity_id: light.ambilight
|
|
rgb_color: [0,255,62] # Spotify Green
|
|
brightness: 130
|
|
- service: media_player.select_source
|
|
data:
|
|
entity_id: media_player.spotify
|
|
source: Wohnzimmer
|
|
# We have to wait for the AVR establishing a BT connection to the Dot
|
|
- delay:
|
|
seconds: 15
|
|
- service: media_player.media_play
|
|
data:
|
|
entity_id: media_player.spotify
|
|
|
|
livingroom_music_off:
|
|
alias: Wohnzimmer Musik - Aus
|
|
sequence:
|
|
- service: script.livingroom_music_scenario_off
|
|
- service: switch.turn_off
|
|
data:
|
|
entity_id: switch.harmony_music_bt
|
|
|
|
|
|
livingroom_music_scenario_off:
|
|
alias: Wohnzimmer Musik Szenario - Aus
|
|
sequence:
|
|
- service: media_player.media_pause
|
|
data:
|
|
entity_id: media_player.spotify
|
|
- service: light.turn_off
|
|
data:
|
|
entity_id: light.ambilight
|
|
|
|
livingroom_netflix_on:
|
|
alias: Netflix
|
|
sequence:
|
|
- service: switch.turn_on
|
|
data:
|
|
entity_id: switch.harmony_firetv
|
|
- delay:
|
|
seconds: 6
|
|
- service: media_player.select_source
|
|
data:
|
|
entity_id: media_player.fire_tv
|
|
source: com.netflix.ninja
|
|
- delay:
|
|
seconds: 3
|
|
- service: remote.send_command
|
|
data:
|
|
entity_id: remote.livingroom_harmony
|
|
command:
|
|
- Ok
|
|
device: 42849848 #FireTv
|
|
delay_secs: 0.6 |