From 595330c9ad054894e347b4b39a3c8f644d8f040d Mon Sep 17 00:00:00 2001 From: Tony Stork Date: Wed, 30 Aug 2023 16:12:38 -0400 Subject: [PATCH] Tweak climate news in welcome home briefing #97, close #116 --- templates/speech/welcome_home.yaml | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/templates/speech/welcome_home.yaml b/templates/speech/welcome_home.yaml index ad961db..9baebdc 100644 --- a/templates/speech/welcome_home.yaml +++ b/templates/speech/welcome_home.yaml @@ -68,24 +68,25 @@

{% if (states('sensor.climate_devices_installed') | int) > 0 %} - "In climate control news, " {% if is_state('input_boolean.master_bedroom_aircon_installed','on') %} "the master bedroom temperature is {{ states('sensor.master_bedroom_aircon_indoor_temperature') | int }} degrees. " - {% if is_state('climate.master_bedroom_aircon','cool') %} - "and the master bedroom air conditioner is set for cooling to {{ state_attr('climate.master_bedroom_aircon','temperature') }} degrees. " - {% elif is_state('climate.master_bedroom_aircon','fan_only') %} - "and the master bedroom air conditioner is in fan only mode. " - {% elif is_state('climate.master_bedroom_aircon','dry') %} - "and the master bedroom air conditioner is moonlighting as a dehumidifier. " - {% elif is_state('climate.master_bedroom_aircon','auto') %} - "and the master bedroom air conditioner is making its own decisions. Be afraid, be very afraid. " - {% else %} - "and the master bedroom air conditioner is currently not speaking to me. Was it something I said? " + {% if not is_state('climate.master_bedroom_aircon','off') %} + {% if is_state('climate.master_bedroom_aircon','cool') %} + "and the master bedroom air conditioner is set for cooling to {{ state_attr('climate.master_bedroom_aircon','temperature') }} degrees. " + {% elif is_state('climate.master_bedroom_aircon','fan_only') %} + "and the master bedroom air conditioner is in fan only mode. " + {% elif is_state('climate.master_bedroom_aircon','dry') %} + "and the master bedroom air conditioner is moonlighting as a dehumidifier. " + {% elif is_state('climate.master_bedroom_aircon','auto') %} + "and the master bedroom air conditioner is making its own decisions. Be afraid, be very afraid. " + {% else %} + "and the master bedroom air conditioner is currently not speaking to me. Was it something I said? " + {% endif %} {% endif %} - {% else %} + {% elif is_state('input_boolean.master_bedroom_aircon_installed','off') %} "There is no air conditioner or temperature sensor installed in the master bedroom. " {% endif %} - {% if is_state('input_boolean.emma_bedroom_aircon_installed','on') %} + {% if is_state('input_boolean.emma_bedroom_aircon_installed','on') and is_state('fan.emma_air_conditioner','on') %} "Emma's air conditioner is {{ states('fan.emma_air_conditioner') }}. " {% endif %} {% endif %}