From edbb6aa608c4e5d0767301f6d8e537389297c99c Mon Sep 17 00:00:00 2001 From: Carlo Costanzo Date: Mon, 11 Aug 2025 12:58:01 -0400 Subject: [PATCH] Refactor weather briefing template to ensure proper float conversion for state values, enhancing accuracy in weather alerts and conditions. Update garage check condition for improved functionality. --- config/templates/speech/briefing.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/templates/speech/briefing.yaml b/config/templates/speech/briefing.yaml index 5a0b7dc0..17df215a 100755 --- a/config/templates/speech/briefing.yaml +++ b/config/templates/speech/briefing.yaml @@ -49,19 +49,19 @@ {{ friendly_name }}: {{ state }} {{ unit }} {%- elif 'Precip' in friendly_name -%} {{ friendly_name }}: {{ state }} {{ unit }} - {%- elif 'Wind Speed' in friendly_name and state | float > 15 -%} + {%- elif 'Wind Speed' in friendly_name and state | float(0) > 15 -%} {{ friendly_name }}: {{ state }} {{ unit }} - {%- elif 'Cloud Coverage' in friendly_name and state | float > 75 -%} + {%- elif 'Cloud Coverage' in friendly_name and state | float(0) > 75 -%} {{ friendly_name }}: {{ state }} {{ unit }} - {%- elif 'Humidity' in friendly_name and (state | float < 50 or state | float > 85) -%} + {%- elif 'Humidity' in friendly_name and (state | float(0) < 50 or state | float(0) > 85) -%} {{ friendly_name }}: {{ state }} {{ unit }} - {%- elif 'Nearest Storm Distance' in friendly_name and state | float <= 10 -%} + {%- elif 'Nearest Storm Distance' in friendly_name and state | float(0) <= 10 -%} {{ friendly_name }}: {{ state }} {{ unit }} {%- endif -%} {%- endif %} {% endfor -%} - {%- if states('sensor.nws_alerts')|int > 0 -%} + {%- if states('sensor.nws_alerts') | int(0) > 0 -%} {%- set alert_description = state_attr('sensor.nws_alerts', 'Alerts') %} [Summarize the included weather alert and give overall details on any storms relevant to the residents of the home. Use the Situation Overview Section to best understand what is going on - Be sure to highlight any impacts to Seminole County or Tallahassee] {{ alert_description }} @@ -332,7 +332,7 @@ {{ dark_outside() }} {% endif %} - {% if call_garage_check == 999 or is_state('sun.sun', '9999') %} + {% if call_garage_check == 1 or is_state('sun.sun', 'below_horizon') %} {{ garage_check() }} {% endif %}