From 939d731c69197a97847504d146e3278f743a419f Mon Sep 17 00:00:00 2001 From: Tony Stork Date: Tue, 25 Oct 2022 13:20:47 -0400 Subject: [PATCH] Additional reminders for garbage collection --- templates/speech/daily_briefing.yaml | 5 +++++ templates/speech/morning_briefing.yaml | 5 +++++ templates/speech/welcome_home.yaml | 7 +++++++ 3 files changed, 17 insertions(+) diff --git a/templates/speech/daily_briefing.yaml b/templates/speech/daily_briefing.yaml index 450ac86..46b590d 100644 --- a/templates/speech/daily_briefing.yaml +++ b/templates/speech/daily_briefing.yaml @@ -112,6 +112,11 @@ 'Do not forget to bring the trash can back from the curb.', 'The trash can will feel lonely if you leave it at the curb all night.' ] | random }} + {% elif gc == 6 %} + {{ [ + 'If you have not already, please remember to bring the garbage can back from the sidewalk.', + 'Just in case you forgot, it is time to bring the garbage can back to the house before it gets lonely.' + ] | random }} {% endif %} {% if is_state('binary_sensor.evening','on') %} diff --git a/templates/speech/morning_briefing.yaml b/templates/speech/morning_briefing.yaml index cb46a9c..9fc8e62 100644 --- a/templates/speech/morning_briefing.yaml +++ b/templates/speech/morning_briefing.yaml @@ -137,6 +137,11 @@ 'Do not forget to bring the trash can back from the curb.', 'The trash can will feel lonely if you leave it at the curb all night.' ] | random }} + {% elif gc == 6 %} + {{ [ + 'If you have not already, please remember to bring the garbage can back from the sidewalk.', + 'Just in case you forgot, it is time to bring the garbage can back to the house before it gets lonely.' + ] | random }} {% endif %}

diff --git a/templates/speech/welcome_home.yaml b/templates/speech/welcome_home.yaml index 2029193..08d4559 100644 --- a/templates/speech/welcome_home.yaml +++ b/templates/speech/welcome_home.yaml @@ -142,6 +142,13 @@ 'Do not forget to bring the trash can back from the curb.', 'The trash can will feel lonely if you leave it at the curb all night.' ] | random }} + {% elif gc == 6 %} + {% if is_state('binary_sensor.morning','on') or is_state('binary_sensor.midday','on') %} + {{ [ + 'If you have not already, please remember to bring the garbage can back from the sidewalk.', + 'Just in case you forgot, it is time to bring the garbage can back to the house before it gets lonely.' + ] | random }} + {% endif %} {% endif %}