53 lines
1.1 KiB
YAML
53 lines
1.1 KiB
YAML
- id: bedroom-tv-on
|
|
alias: '[Bedroom] TV On'
|
|
trigger:
|
|
- platform: state
|
|
entity_id: switch.bedroom_tv
|
|
to: 'on'
|
|
condition:
|
|
- condition: state
|
|
entity_id: input_select.home_mode
|
|
state: Day
|
|
action:
|
|
- service: script.bedroom_tv_scene
|
|
|
|
- id: bedroom-tv-off
|
|
alias: '[Bedroom] TV Off'
|
|
trigger:
|
|
- platform: state
|
|
entity_id: switch.bedroom_tv
|
|
to: 'off'
|
|
condition:
|
|
- condition: state
|
|
entity_id: input_select.home_mode
|
|
state: Day
|
|
action:
|
|
- service: script.bedroom_tv_off_scene
|
|
|
|
- id: bedroom-tv-turn-off-at-night
|
|
alias: '[Bedroom] TV turn off at night'
|
|
mode: single
|
|
trigger:
|
|
- platform: time
|
|
at: "02:00:00"
|
|
action:
|
|
- service: media_player.turn_off
|
|
target:
|
|
entity_id: media_player.bedroom_tv
|
|
|
|
- id: bedroom-tv-off-at-night
|
|
alias: '[Bedroom] TV stay off at night'
|
|
mode: single
|
|
trigger:
|
|
- platform: state
|
|
entity_id: switch.bedroom_tv
|
|
to: 'on'
|
|
condition:
|
|
- condition: time
|
|
before: "06:00:00"
|
|
after: "02:00:00"
|
|
action:
|
|
- service: media_player.turn_off
|
|
target:
|
|
entity_id: media_player.bedroom_tv
|