mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-08-17 10:57:03 +00:00
Turn onthe AMPs if music starts streaming! and then off.
This commit is contained in:
@@ -1,23 +1,38 @@
|
||||
###################################
|
||||
## Turn on/off Living Room AMPs via ALexa/IFTTT event.
|
||||
###################################
|
||||
|
||||
- alias: 'IFTTT Turn AMP on'
|
||||
trigger:
|
||||
- platform: event
|
||||
event_type: amp_on
|
||||
|
||||
action:
|
||||
- service: switch.turn_on
|
||||
entity_id: switch.living_room_amp
|
||||
|
||||
|
||||
- alias: 'IFTTT Turn AMP off'
|
||||
trigger:
|
||||
- platform: event
|
||||
event_type: amp_off
|
||||
|
||||
action:
|
||||
- service: switch.turn_off
|
||||
entity_id: switch.living_room_amp
|
||||
|
||||
###################################
|
||||
## Turn on/off Living Room AMPs via ALexa/IFTTT event.
|
||||
###################################
|
||||
|
||||
- alias: 'IFTTT Turn AMP on'
|
||||
trigger:
|
||||
- platform: event
|
||||
event_type: amp_on
|
||||
- platform: state
|
||||
entity_id: media_player.whole_house
|
||||
from: 'off'
|
||||
to: 'playing'
|
||||
- platform: state
|
||||
entity_id: media_player.livingroomcc
|
||||
from: 'off'
|
||||
to: 'playing'
|
||||
action:
|
||||
- service: switch.turn_on
|
||||
entity_id: switch.living_room_amp
|
||||
|
||||
|
||||
- alias: 'IFTTT Turn AMP off'
|
||||
trigger:
|
||||
- platform: event
|
||||
event_type: amp_off
|
||||
- platform: state
|
||||
entity_id: media_player.whole_house
|
||||
from: 'playing'
|
||||
to: 'off'
|
||||
- platform: state
|
||||
entity_id: media_player.livingroomcc
|
||||
from: 'playing'
|
||||
to: 'off'
|
||||
|
||||
action:
|
||||
- service: switch.turn_off
|
||||
entity_id: switch.living_room_amp
|
||||
|
||||
|
Reference in New Issue
Block a user