mysmarthome/packages/status.yaml

24 lines
722 B
YAML
Raw Normal View History

2019-04-17 22:46:06 +00:00
homeassistant:
2022-12-05 00:02:34 +00:00
2019-04-17 22:46:06 +00:00
automation:
2022-12-05 00:02:34 +00:00
# this automation runs every day at 9:00 AM, 12 PM, 5PM, and at 10:00 PM
# and sends an email - only when we are away from the house.
2019-04-17 22:46:06 +00:00
- alias: Notify Home Status When Away
trigger:
- platform: time
2022-12-05 00:02:34 +00:00
at: "09:00:00"
2019-04-17 22:46:06 +00:00
- platform: time
2022-12-05 00:02:34 +00:00
at: "12:00:00"
2019-04-17 22:46:06 +00:00
- platform: time
2022-12-05 00:02:34 +00:00
at: "17:00:00"
2019-04-17 22:46:06 +00:00
- platform: time
2022-12-05 00:02:34 +00:00
at: "10:00:00"
2019-04-17 22:46:06 +00:00
condition:
- condition: template
value_template: "{{ states('input_boolean.home_mode_away') == 'on' }}"
action:
- service: notify.notify_smtp
2022-12-05 00:02:34 +00:00
data:
2019-04-17 22:46:06 +00:00
title: 'Home Status {{ now().strftime("%d %h %Y, %I:%M:%S %p") }}'
2022-12-05 00:02:34 +00:00
message: !include ../templates/away_status.yaml