129 lines
3.7 KiB
YAML
129 lines
3.7 KiB
YAML
# This file is for entities/automations that are specific to Tony
|
|
|
|
input_boolean:
|
|
tony_streaming_today:
|
|
name: Tony Streaming Today
|
|
icon: mdi:twitch
|
|
master_bedroom_sleeping:
|
|
name: Master Bedroom Sleeping
|
|
icon: mdi:sleep
|
|
|
|
automation:
|
|
- id: 77f33070-4405-41b6-84c4-05b4f3697199
|
|
alias: Tony Stream Today
|
|
initial_state: true
|
|
trigger:
|
|
- platform: time
|
|
at: '08:00:00'
|
|
condition:
|
|
- condition: template
|
|
value_template: >
|
|
{%- if as_timestamp(strptime(state_attr('calendar.tony_s_twitch_schedule','start_time'), '%Y-%m-%d %H:%M:%S')) | timestamp_custom("%Y-%m-%d") == now().strftime("%Y-%m-%d") %}
|
|
true
|
|
{%- endif -%}
|
|
action:
|
|
- service: script.tony_stream_today
|
|
|
|
- id: 465ec4be-8e6c-444b-bfe7-6d4796888be4
|
|
alias: Tony Stream Reset
|
|
initial_state: true
|
|
trigger:
|
|
- platform: state
|
|
entity_id: sensor.twitch_ironnerd24
|
|
from: 'streaming'
|
|
to: 'offline'
|
|
action:
|
|
- service: script.tony_stream_reset
|
|
|
|
# TODO: Add actions when sleep mode is activated
|
|
|
|
- id: 09c3d481-11df-459c-9240-d002b9b2ef53
|
|
alias: 'Master Bedroom Handling'
|
|
description: "For scheduled operations in the Master Bedroom"
|
|
initial_state: true
|
|
mode: single
|
|
trigger:
|
|
- platform: time
|
|
at: input_datetime.master_bedroom_wakeup
|
|
id: wakeup
|
|
condition:
|
|
- condition: state
|
|
entity_id: group.adults
|
|
state: home
|
|
action:
|
|
- choose:
|
|
- conditions:
|
|
- condition: trigger
|
|
id: wakeup
|
|
sequence:
|
|
- service: input_boolean.turn_off
|
|
target:
|
|
entity_id: input_boolean.master_bedroom_sleeping
|
|
|
|
- id: 7889ccf2-1fee-4819-8e59-5ad4e5879b0a
|
|
alias: 'Master Bedroom Sleeping'
|
|
description: 'Handles the response to the Master Bedroom Sleeping toggle'
|
|
initial_state: true
|
|
mode: restart
|
|
trigger:
|
|
- platform: state
|
|
entity_id: input_boolean.master_bedroom_sleeping
|
|
from: 'off'
|
|
to: 'on'
|
|
id: sleep-on
|
|
- platform: state
|
|
entity_id: input_boolean.master_bedroom_sleeping
|
|
from: 'on'
|
|
to: 'off'
|
|
id: sleep-off
|
|
action:
|
|
- service: script.master_bedroom_wakeup
|
|
|
|
script:
|
|
tony_stream_today:
|
|
alias: 'Tony Stream Today'
|
|
sequence:
|
|
- service: input_datetime.set_datetime
|
|
target:
|
|
entity_id: input_datetime.tony_streaming_start_time
|
|
data:
|
|
time: >
|
|
{{ as_timestamp(strptime(state_attr('calendar.tony_s_twitch_schedule','start_time'), '%Y-%m-%d %H:%M:%S')) | timestamp_custom("%H:%M") }}
|
|
- service: input_boolean.turn_on
|
|
entity_id: input_boolean.tony_streaming_today
|
|
|
|
tony_stream_reset:
|
|
alias: 'Tony Stream Reset'
|
|
sequence:
|
|
- service: input_boolean.turn_off
|
|
entity_id: input_boolean.tony_streaming_today
|
|
|
|
master_bedroom_wakeup:
|
|
alias: 'Master Bedroom Wakeup'
|
|
sequence:
|
|
- choose:
|
|
- conditions:
|
|
- condition: trigger
|
|
id: sleep-off
|
|
sequence:
|
|
- service: media_player.volume_set
|
|
target:
|
|
entity_id: media_player.master_bedroom_echo_dot
|
|
data:
|
|
volume_level: >
|
|
{% if is_state('input_boolean.give_me_darkness','on') %}
|
|
{{ states('input_number.master_bedroom_echo_dot_night_volume') }}
|
|
{% else %}
|
|
{{ states('input_number.master_bedroom_echo_dot_day_volume') }}
|
|
{% endif %}
|
|
- if:
|
|
- condition: numeric_state
|
|
entity_id: sensor.pirateweather_cloud_coverage
|
|
above: 50
|
|
then:
|
|
- service: input_select.select_option
|
|
target:
|
|
entity_id: input_select.master_bedroom_scenes
|
|
data:
|
|
option: Adaptive
|