2019-03-09 02:52:37 +00:00
- id : washer_running
2019-07-11 11:31:10 +00:00
alias : Washer Running
2019-03-09 02:52:37 +00:00
trigger :
2019-10-06 00:11:58 +00:00
- above : 5
2019-11-08 17:54:11 +00:00
entity_id : sensor.washer_power
2019-07-11 11:31:10 +00:00
platform : numeric_state
2019-11-12 02:45:41 +00:00
condition :
condition : or
conditions :
- condition : state
entity_id : sensor.washer_status
state : idle
- condition : state
entity_id : sensor.washer_status
state : complete
2019-03-09 02:52:37 +00:00
action :
- service : script.washer_running
2019-07-11 11:31:10 +00:00
initial_state : true
2019-03-09 02:52:37 +00:00
- id : washer_complete
2019-07-11 11:31:10 +00:00
alias : Washer Complete
2019-03-09 02:52:37 +00:00
trigger :
2019-07-22 14:26:24 +00:00
- below : 3
2019-11-08 17:54:11 +00:00
entity_id : sensor.washer_power
2019-07-11 11:31:10 +00:00
platform : numeric_state
2019-03-09 02:52:37 +00:00
condition :
- condition : state
entity_id : sensor.washer_status
2019-07-11 11:31:10 +00:00
state : running
2019-03-09 02:52:37 +00:00
action :
- service : script.washer_complete
2019-07-11 11:31:10 +00:00
initial_state : true
2019-03-09 02:52:37 +00:00
- id : washer_emptied
2019-07-11 11:31:10 +00:00
initial_state : true
alias : Washer Emptied
2019-03-09 02:52:37 +00:00
trigger :
- platform : state
2019-11-08 17:54:11 +00:00
entity_id : binary_sensor.washer_door
2019-03-09 02:52:37 +00:00
from : 'off'
to : 'on'
action :
- service : script.washer_idle
2019-07-11 11:31:10 +00:00
- service : script.turn_off
entity_id : script.washer_finished_notification_audible
- id : washer_notification
initial_state : true
alias : Washer Notification
trigger :
- platform : state
entity_id : sensor.washer_status
from : running
to : complete
action :
- service : script.washer_finished_notification_audible
- id : turn_off_disney
initial_state : true
alias : Turn Off Disney
trigger :
- platform : state
2019-07-24 18:09:46 +00:00
entity_id : media_player.hass_speaker
2019-07-11 11:31:10 +00:00
from : playing
to : idle
2019-03-09 02:52:37 +00:00
action :
2019-07-11 11:31:10 +00:00
- service : input_boolean.turn_off
entity_id : input_boolean.tiki_room_audio
- service : input_boolean.turn_off
entity_id : input_boolean.happy_ever_after_show
- service : input_boolean.turn_off
entity_id : input_boolean.haunted_mansion
- service : input_boolean.turn_off
entity_id : input_boolean.boo_to_you_show
- service : input_boolean.turn_off
entity_id : input_boolean.spaceship_earth_ride
- service : input_boolean.turn_off
entity_id : input_boolean.mk_loop
- service : input_boolean.turn_off
entity_id : input_boolean.illuminations
- service : input_boolean.turn_off
entity_id : input_boolean.boo_to_you
- service : input_boolean.turn_off
entity_id : input_boolean.happy_ever_after
2019-02-21 17:49:55 +00:00
- id : backup_hass
2019-07-11 11:31:10 +00:00
initial_state : true
2019-02-21 17:49:55 +00:00
alias : Backup Hass
trigger :
2019-07-11 11:31:10 +00:00
- platform : time
at : 05 : 00 : 00
2019-02-21 17:49:55 +00:00
action :
- service : shell_command.backup
2019-11-14 01:55:04 +00:00
- service : script.twitter_notify_image
2019-07-11 11:31:10 +00:00
data_template :
2019-11-14 01:55:04 +00:00
tweet : >-
{{ [
"I just kicked off a backup of #homeassistant to ensure I live on. Do you backup? " ,
"Its important to backup your data. Thats why I just intitiated a backup of my critical data. " ,
"With @home_assistant and the #dropbox component it is easy to backup your important config files. Lets do this thing! "
] | random }}
image : >-
"/config/www/tweet_images/hdd.jpg"
2019-07-23 13:41:45 +00:00
- id : coffee_time
alias : Coffee Time
2019-07-11 11:31:10 +00:00
initial_state : true
2019-02-21 17:49:55 +00:00
trigger :
2019-07-23 13:41:45 +00:00
platform : template
value_template : "{{ states('sensor.time') == (state_attr('input_datetime.coffee_time', 'timestamp') | int | timestamp_custom('%H:%M', False)) }}"
2019-02-21 17:49:55 +00:00
action :
2019-07-11 11:31:10 +00:00
- service : scene.turn_on
entity_id : scene.diminshed_livingroom_lighting
- service : scene.turn_on
entity_id : scene.diminished_kitchen_lighting
2020-03-18 02:49:21 +00:00
- service : scene.turn_on
entity_id : scene.jeff_night_light
2019-11-22 02:33:21 +00:00
- service : alarm_control_panel.aarlo_set_mode
data :
entity_id : alarm_control_panel.aarlo_ah_base_station
mode : 'home'
2019-07-23 13:41:45 +00:00
- id : good_morning
alias : Good Morning
2019-02-21 17:49:55 +00:00
initial_state : true
trigger :
2019-09-07 19:11:00 +00:00
platform : template
value_template : "{{ states('sensor.time') == (state_attr('input_datetime.good_morning', 'timestamp') | int | timestamp_custom('%H:%M', False)) }}"
2019-02-21 17:49:55 +00:00
action :
- service : scene.turn_on
entity_id : scene.normal_livingroom_lighting
- service : scene.turn_on
entity_id : scene.normal_kitchen_lighting
- service : switch.turn_off
2019-11-08 17:54:11 +00:00
entity_id : switch.0xf0d1b80000052281_switch # Rainbow Light
- service : light.turn_on
entity_id : light.0xe20db9fffe003637_light # Skylar's Lamp
2019-02-21 17:49:55 +00:00
- service : scene.turn_on
entity_id : scene.jeff_light_on
2019-11-14 01:55:04 +00:00
- service : script.twitter_notify_image
2019-07-11 11:31:10 +00:00
data_template :
2019-11-14 01:55:04 +00:00
tweet : >-
{{ [
"Good Morning! Time to rise and shine at Anchorage House. " ,
"Good Morning from Anchorage House. Glad to see everyone made it. " ,
2020-03-20 17:55:24 +00:00
"Birds are awake, and so is Anchorage House. Good morning everyone!" ,
"Good morning. Anchorage House is up and online."
2019-11-14 01:55:04 +00:00
] | random }}
2020-04-10 17:33:18 +00:00
{% if is_state('calendar.holidays_in_united_states', 'on') %}
2020-04-14 02:12:15 +00:00
Today is {{states.calendar.holidays_in_united_states.attributes.message}}.
2020-04-10 17:33:18 +00:00
{% endif %}
2019-11-14 01:55:04 +00:00
image : >-
{{ [ "/config/www/tweet_images/coffee.jpg" ,
"/config/www/tweet_images/coffee2.jpg" ] | random }}
2019-07-23 13:41:45 +00:00
2019-02-21 17:49:55 +00:00
- id : skylar_bedtime
alias : Skylar Bedtime
initial_state : true
trigger :
- platform : time
at : '19:15:00'
2019-07-11 11:31:10 +00:00
condition :
- condition : state
entity_id : input_boolean.vacation_mode
state : 'off'
2019-02-21 17:49:55 +00:00
action :
- service : switch.turn_on
2019-11-08 17:54:11 +00:00
entity_id : switch.0xf0d1b80000052281_switch # Rainbow Light
2019-11-12 19:34:52 +00:00
- service : scene.turn_on
entity_id : scene.skylar_lamp_25
2019-11-22 02:33:21 +00:00
2019-02-21 17:49:55 +00:00
- id : jeff_lights_out
alias : Jeff lights out
initial_state : true
trigger :
- platform : time
at : '23:00:00'
2019-07-11 11:31:10 +00:00
condition :
- condition : state
entity_id : input_boolean.vacation_mode
state : 'off'
2019-02-21 17:49:55 +00:00
action :
- service : scene.turn_on
entity_id : scene.jeff_light_off
- id : jeff_bedtime
alias : Jeff bedtime
initial_state : true
trigger :
- platform : time
at : '22:00:00'
2019-03-09 02:52:37 +00:00
condition :
- condition : state
entity_id : light.jeff_light
state : 'on'
2019-07-11 11:31:10 +00:00
- condition : state
entity_id : input_boolean.vacation_mode
state : 'off'
2019-02-21 17:49:55 +00:00
action :
- service : scene.turn_on
entity_id : scene.jeff_bedtime
- id : jeff_night_light
alias : Jeff night light
initial_state : true
trigger :
- platform : time
at : '22:30:00'
2019-03-09 02:52:37 +00:00
condition :
- condition : state
entity_id : light.jeff_light
state : 'on'
2019-07-11 11:31:10 +00:00
- condition : state
entity_id : input_boolean.vacation_mode
state : 'off'
2019-02-21 17:49:55 +00:00
action :
- service : scene.turn_on
entity_id : scene.jeff_night_light
- id : jeff_light_on
alias : Jeff Light On
initial_state : true
trigger :
- platform : time
at : '20:00:00'
2019-07-11 11:31:10 +00:00
condition :
- condition : state
entity_id : input_boolean.vacation_mode
state : 'off'
2019-02-21 17:49:55 +00:00
action :
- service : scene.turn_on
entity_id : scene.jeff_light_on
2020-03-18 02:49:21 +00:00
# - id: jeff_alarm
# alias: Jeff alarm
# initial_state: true
# trigger:
# - platform: time
# at: 05:15:00
# condition:
# - condition: state
# entity_id: input_boolean.vacation_mode
# state: 'off'
# action:
# - service: scene.turn_on
# entity_id: scene.jeff_night_light
2019-11-12 19:34:52 +00:00
2020-03-18 02:49:21 +00:00
# - id: jeff_wake_up
# alias: Jeff wake up
# initial_state: true
# trigger:
# - platform: time
# at: 04:30:00
# condition:
# - condition: state
# entity_id: input_boolean.vacation_mode
# state: 'off'
# action:
# - service: scene.turn_on
# entity_id: scene.jeff_wake_up
2019-11-12 19:34:52 +00:00
2019-02-21 17:49:55 +00:00
- id : good_night
alias : Good Night
initial_state : true
trigger :
- platform : time
at : '22:30:00'
action :
- service : scene.turn_on
entity_id : scene.night_time_livingroom_lighting
2019-07-22 14:26:24 +00:00
- service : switch.turn_off
entity_id : switch.upstairs_fan
- service : switch.turn_off
entity_id : switch.upstairs
2019-02-21 17:49:55 +00:00
- service : switch.turn_off
entity_id : switch.incense
2019-07-11 11:31:10 +00:00
- service : switch.turn_off
2019-11-08 17:54:11 +00:00
entity_id : switch.artemis
2020-03-18 02:49:21 +00:00
- service : switch.turn_off
entity_id : switch.forest
- service : switch.turn_off
entity_id : switch.living_room_fan
2019-02-21 17:49:55 +00:00
- service : light.turn_off
data :
2019-07-11 11:31:10 +00:00
entity_id : light.kitchen_cabinet_lights
2019-02-21 17:49:55 +00:00
- service : light.turn_off
data :
entity_id : light.kitchen_cabinets
2019-11-14 01:55:04 +00:00
- service : script.twitter_notify_image
2019-07-11 11:31:10 +00:00
data_template :
2019-11-14 01:55:04 +00:00
tweet : >-
{{ [
"Good Night from Anchorage House. " ,
2020-03-21 02:23:22 +00:00
"Time to shut down this party. Good Night from Anchorage House. " ,
"I'm feeling tired. Think I'll take a quick nap. Good Night!" ,
"Things are getting quiet. Time to say Good Night." ,
2019-11-14 01:55:04 +00:00
"We have come to the end of our broadcast day. Oh, who am I kidding. I''ll be up all night watching over Anchorage House. "
] | random }}
image : >-
{{ [ "/config/www/tweet_images/off.jpg" ,
"/config/www/tweet_images/clock.jpg" ] | random }}
2019-11-12 19:34:52 +00:00
2019-02-21 17:49:55 +00:00
- id : outside_lights_on_sunset
alias : Outside Lights on at Sunset
initial_state : true
trigger :
- platform : sun
event : sunset
offset : -00 : 30 : 00
action :
- service : switch.turn_on
data :
2019-07-11 11:31:10 +00:00
entity_id : switch.front_porch
2019-02-21 17:49:55 +00:00
- service : script.sunset_garage_open
2019-11-14 01:55:04 +00:00
- service : script.twitter_notify_image
2019-07-11 11:31:10 +00:00
data_template :
2019-11-14 01:55:04 +00:00
tweet : >-
{{ [
"Its getting dark at Anchorage House, so Im turning on the outside lights. " ,
2020-03-20 17:55:24 +00:00
"When the Sun goes down, I help out by turning on the outside lights. Its the little things. " ,
"Switching to dark mode!" ,
2020-03-21 02:23:22 +00:00
"It is time to turn on the outside lights. You know...so bugs know where to die." ,
2020-03-20 17:55:24 +00:00
"Anchorage House is switching to night mode!" ,
"Anchorage House is going to the darkside. Of the planet that is. So the lights are on." ,
2019-11-14 01:55:04 +00:00
"Its getting dark so let me spell out my name...Wait. Did I break into a random #Hamilton song? Pardon me. umm. I just turned on the outside lights at Anchorage House. "
] | random }}
image : >-
{{ [ "/config/www/tweet_images/lamp.jpg" ,
"/config/www/tweet_images/bright.jpg" ,
"/config/www/tweet_images/light.jpg" ,
"/config/www/tweet_images/lamp2.jpg" ] | random }}
2019-09-07 19:11:00 +00:00
2019-10-14 01:12:08 +00:00
- id : sunset
alias : Sunset
initial_state : true
trigger :
- platform : sun
event : sunset
action :
2019-11-22 02:33:21 +00:00
- service : alarm_control_panel.aarlo_set_mode
data :
entity_id : alarm_control_panel.aarlo_ah_base_station
mode : 'Armed'
2019-10-14 01:12:08 +00:00
- service : script.ah_report
data :
call_interuption : 1
call_dark_outside : 1
call_garage_door_status : 1
2019-02-21 17:49:55 +00:00
- id : outside_lights_off_sunrise
alias : Outside Lights off at Sunrise
initial_state : true
trigger :
- platform : sun
event : sunrise
action :
- service : switch.turn_off
data :
2019-07-11 11:31:10 +00:00
entity_id : switch.front_porch
2019-11-14 01:55:04 +00:00
- service : script.twitter_notify_image
2019-07-11 11:31:10 +00:00
data_template :
2019-11-14 01:55:04 +00:00
tweet : >-
{{ [
"The sun is up at Anchorage House, so Im turning off the outside lights. " ,
"I see the sun! Time to turn off the outside lights at Anchorage House. " ,
2020-03-20 17:55:24 +00:00
"Dawn has broken at Anchorage House. Turning off the outside lights." ,
"Anchorage house has converted to the lightside after a few hours on the darkside. I think its safe to turn off the lights." ,
"Light mode activated! So that means I'm turning off the outside lights."
2019-11-14 01:55:04 +00:00
] | random }}
image : >-
{{ [ "/config/www/tweet_images/sunrise.jpg" ,
"/config/www/tweet_images/sunrise3.jpg" ,
"/config/www/tweet_images/sunrise2.jpg" ] | random }}
2019-09-07 19:11:00 +00:00
2019-02-21 17:49:55 +00:00
- id : inside_on_sunset
alias : Inside on at Sunset
initial_state : true
trigger :
- platform : sun
event : sunset
offset : -01 : 00 : 00
action :
2019-07-11 11:31:10 +00:00
service : scene.turn_on
entity_id : scene.normal_livingroom_lighting
2019-02-21 17:49:55 +00:00
- id : inside_off_sunrise
alias : Inside off at Sunrise
initial_state : true
trigger :
- platform : sun
event : sunrise
offset : 00 : 30 : 00
condition :
2020-04-02 23:22:02 +00:00
- condition : state
entity_id : sensor.nws_current_condition
state : "cloudy"
2019-02-21 17:49:55 +00:00
action :
- service : script.inside_all_off
- service : scene.turn_on
entity_id : scene.jeff_light_off
- id : ha_start
alias : HA Startup
initial_state : true
trigger :
- platform : homeassistant
event : start
action :
service : frontend.set_theme
data :
name : midnight-AH
- id : turn_off_audible_notifications
2019-07-14 01:38:53 +00:00
alias : Turn Off Audible Notifications
2019-02-21 17:49:55 +00:00
initial_state : true
trigger :
- platform : time
2019-09-07 19:11:00 +00:00
at : '19:30:00'
2019-02-21 17:49:55 +00:00
action :
- service : input_boolean.turn_off
entity_id : input_boolean.audible_notifications
- id : turn_off_audible_notifications_guests
alias : Turn Off Audible Notifications at 7pm
initial_state : true
trigger :
- platform : time
2020-01-03 17:29:32 +00:00
at : '19:30:00'
2019-02-21 17:49:55 +00:00
condition :
- condition : state
entity_id : input_boolean.guest_mode
state : 'on'
action :
- service : input_boolean.turn_off
entity_id : input_boolean.audible_notifications
- id : turn_on_audible_notifications
alias : Turn On Audible Notifications at 7am
initial_state : true
trigger :
- platform : time
2019-09-07 19:11:00 +00:00
at : 06 : 40 : 00
2019-02-21 17:49:55 +00:00
action :
2020-04-02 23:22:02 +00:00
- service : script.turn_on_ha_speaker
2019-02-21 17:49:55 +00:00
- id : jeff_eta_home
alias : Jeff eta home
initial_state : true
trigger :
- platform : state
entity_id : sensor.jeff_destination
to : Home
condition :
- condition : state
entity_id : sensor.notification_mode
state : Normal
action :
- service : input_boolean.turn_on
entity_id : input_boolean.jeff_travel_monitor
- id : enable_bad_traffic_home_jeff
2019-07-14 01:38:53 +00:00
alias : Notify Jeff - Bad Traffic
2019-02-21 17:49:55 +00:00
initial_state : true
trigger :
- platform : numeric_state
entity_id : sensor.jeff_ett_home
above : 59
condition :
- condition : state
entity_id : sensor.jeff_location
state : Summit
- condition : state
entity_id : input_boolean.jeff_traffic_alerts
state : 'on'
action :
- service : input_boolean.turn_on
entity_id : input_boolean.jeff_traffic_alert_home
2019-11-14 01:55:04 +00:00
- service : script.twitter_notify_image
2019-07-11 11:31:10 +00:00
data_template :
2019-11-14 01:55:04 +00:00
tweet : >-
{{ [
"Looks like traffic is bad out there so I let @thejeffreystone know. " ,
"I dont think todays traffic is the worst I''ve seen, but its bad. Letting my residents know they need to plan their trips. " ,
"Oh great...traffic cannot get any worse. Maybe everyone should stay where they are. "
] | random }}
image : >-
{{ [
"/config/www/tweet_images/road.jpg" ,
"/config/www/tweet_images/traffic.jpg" ,
"/config/www/tweet_images/traffic-jam.jpg"
] | random }}
2019-02-21 17:49:55 +00:00
- id : disable_bad_traffic_home_jeff
alias : Disabling Jeff Bad Traffic Home
initial_state : true
trigger :
- platform : numeric_state
entity_id : sensor.jeff_ett_home
below : 40
- platform : state
entity_id : sensor.jeff_destination
to : Home
condition :
- condition : state
entity_id : input_boolean.jeff_traffic_alert_home
state : 'on'
action :
- service : input_boolean.turn_off
entity_id : input_boolean.jeff_traffic_alert_home
- id : '1550107919204'
2019-07-11 11:31:10 +00:00
alias : Family Is Home Webhook
2019-02-21 17:49:55 +00:00
trigger :
- platform : webhook
2019-07-11 11:31:10 +00:00
webhook_id : home_webhook
2019-02-21 17:49:55 +00:00
condition : [ ]
action :
- service : script.family_is_home
- id : '1550108034209'
2019-07-11 11:31:10 +00:00
alias : Family Is Away Webhook
2019-02-21 17:49:55 +00:00
trigger :
- platform : webhook
2019-07-11 11:31:10 +00:00
webhook_id : away_webhook
2019-02-21 17:49:55 +00:00
condition : [ ]
action :
- service : script.family_is_away
2019-07-14 01:38:53 +00:00
2019-07-22 14:26:24 +00:00
- id : set_coffee_time
alias : set soffee time
trigger :
- platform : time
at : '00:02:15'
action :
- service : input_datetime.set_datetime
entity_id : input_datetime.coffee_time
data_template :
time : >
{% if states.binary_sensor.workday_sensor.state == 'on' %}
2020-03-26 01:51:48 +00:00
06 : 00
2019-07-22 14:26:24 +00:00
{% else %}
07 : 15
{% endif %}
2019-07-14 01:38:53 +00:00
2019-09-07 19:11:00 +00:00
- id : set_good_morning_time
alias : set good morning time
trigger :
- platform : time
at : '05:55:00'
action :
- service : input_datetime.set_datetime
entity_id : input_datetime.good_morning
data_template :
time : >
{% if states.calendar.skylar_school.attributes.offset_reached == True %}
2020-03-26 01:51:48 +00:00
07 : 15
2019-09-07 19:11:00 +00:00
{% elif states.binary_sensor.workday_sensor.state == 'on' %}
2020-03-26 01:51:48 +00:00
07 : 15
2019-09-07 19:11:00 +00:00
{% else %}
2019-10-14 01:12:08 +00:00
07 : 25
2019-09-07 19:11:00 +00:00
{% endif %}
2019-07-14 01:38:53 +00:00
2019-07-16 01:38:24 +00:00
- id : upstairs_fan_on
alias : Upstairs Fan On
2019-07-11 11:31:10 +00:00
initial_state : true
trigger :
- entity_id : binary_sensor.upstairs_occupancy
from : 'Off'
platform : state
to : 'On'
condition :
- above : '73'
condition : numeric_state
entity_id : sensor.upstairs_temperature
action :
- data :
2019-07-16 01:38:24 +00:00
entity_id : switch.upstairs_fan
2019-07-11 11:31:10 +00:00
service : switch.turn_on
2019-10-13 20:00:10 +00:00
2019-07-11 11:31:10 +00:00
- id : '1558630577206'
alias : Garage Is Open at 9pm
initial_state : true
trigger :
- at : '21:00:00'
platform : time
condition :
- condition : state
2019-11-12 19:34:52 +00:00
entity_id : binary_sensor.garage_door
2019-07-11 11:31:10 +00:00
state : 'on'
action :
- data :
entity_id : input_boolean.garage_after_dark
service : input_boolean.turn_on
- id : '1559612300685'
alias : Garage Closed
initial_state : true
trigger :
2019-11-12 19:34:52 +00:00
- entity_id : binary_sensor.garage_door
2019-07-11 11:31:10 +00:00
from : 'on'
platform : state
to : 'off'
condition : [ ]
action :
- data :
entity_id : input_boolean.garage_after_dark
service : input_boolean.turn_off
- id : '1562066108032'
alias : Living Room Fan On
initial_state : true
trigger :
- entity_id : binary_sensor.living_room_occupancy
from : 'off'
platform : state
to : 'on'
condition :
- condition : state
entity_id : switch.living_room_fan
state : 'off'
2020-03-18 02:49:21 +00:00
- above : '73'
condition : numeric_state
entity_id : sensor.upstairs_temperature
2019-07-11 11:31:10 +00:00
action :
- data :
entity_id : switch.living_room_fan
service : switch.turn_on
- id : '1562067639239'
alias : Upstairs Fan Off
initial_state : true
trigger :
- entity_id : binary_sensor.upstairs_occupancy
2019-07-16 01:38:24 +00:00
from : 'on'
2019-07-11 11:31:10 +00:00
platform : state
2019-07-16 01:38:24 +00:00
to : 'off'
2019-07-11 11:31:10 +00:00
condition :
- condition : state
entity_id : switch.upstairs_fan
2019-07-16 01:38:24 +00:00
state : 'on'
2020-03-18 02:49:21 +00:00
- below : '72'
condition : numeric_state
entity_id : sensor.upstairs_temperature
2019-10-06 00:11:58 +00:00
- condition : state
entity_id : media_player.tsr_6750_a3ed2f
2019-10-13 20:00:10 +00:00
state : 'off'
2019-07-11 11:31:10 +00:00
action :
- data :
entity_id : switch.upstairs_fan
service : switch.turn_off
- id : '1562630916597'
alias : Kat Pill Reminder
initial_state : true
trigger :
2019-07-12 20:35:36 +00:00
- platform : template
value_template : "{{ states('sensor.time') == (state_attr('input_datetime.kat_pill_reminder', 'timestamp') | int | timestamp_custom('%H:%M', False)) }}"
2019-07-11 11:31:10 +00:00
action :
- data :
message : Remember to take meds
service : notify.kat_ios
2019-07-16 01:38:24 +00:00
2019-09-07 19:11:00 +00:00
# - id: turn_off_ha_speaker
# alias: Turn Off HA Speaker
# trigger:
# - platform: state
# entity_id: media_player.hass_speaker
# from: 'playing'
# to: 'idle'
# action:
# - service: media_player.turn_off
# entity_id: media_player.hass_speaker
# initial_state: true
- id : turn_off_kitchen_speaker
alias : Turn Off Kitchen Display
trigger :
- platform : state
entity_id : media_player.googlehomehub3492
from : 'playing'
to : 'idle'
action :
- service : media_player.turn_off
entity_id : media_player.googlehomehub3492
initial_state : true
2019-11-14 01:55:04 +00:00
# - id: turn_off_ha_speaker
# alias: Turn Off HA Speaker
# trigger:
# - platform: state
2020-04-02 23:22:02 +00:00
# entity_id: media_player.ha_speaker
2019-11-14 01:55:04 +00:00
# from: 'playing'
# to: 'idle'
# action:
# - service: switch.turn_off
# entity_id: switch.ha_speaker
# - service: media_player.turn_off
2020-04-02 23:22:02 +00:00
# entity_id: media_player.ha_speaker
2019-11-14 01:55:04 +00:00
# - service: script.kill_this_ride
# initial_state: true
2019-07-16 01:38:24 +00:00
2020-04-10 17:33:18 +00:00
- id : save_old_covid_stats
alias : Old Covid Stats archive
trigger :
- platform : time
at : '15:12:15'
action :
- service : script.save_old_covid_stats
initial_state : true