Updated some of the values to remove the template warnings. I'm sure there are more but this is good for now.

This commit is contained in:
ccostan 2021-04-30 14:39:08 -04:00
parent 42acf00f20
commit db4304d972
3 changed files with 9 additions and 9 deletions

View File

@ -288,10 +288,10 @@
{% endif %} {% endif %}
{# Called from Annoucenments #} {# Called from Annoucenments #}
{{ personarriving }} {{ personarriving | default }}
{# Called from Nest when thermostats turn on #} {# Called from Nest when thermostats turn on #}
{{ NestStatus }} {{ NestStatus | default }}
{% if call_inside_weather == 1 %} {% if call_inside_weather == 1 %}
{{ inside_weather() }} {{ inside_weather() }}
@ -309,13 +309,13 @@
{{ fridge() }} {{ fridge() }}
{% endif %} {% endif %}
{{ DoorOpened }} {{ DoorOpened | default }}
{{ DoorClosed }} {{ DoorClosed | default }}
{{ lock_check() }} {{ lock_check() }}
{# These two lock statements are sent directly from automations. #} {# These two lock statements are sent directly from automations. #}
{{ DoorLocked }} {{ DoorLocked | default }}
{{ DoorUnLocked }} {{ DoorUnLocked | default }}
{% if call_dark_outside == 1 %} {% if call_dark_outside == 1 %}
{{ dark_outside() }} {{ dark_outside() }}
@ -329,7 +329,7 @@
{{ window_check() }} {{ window_check() }}
{% endif %} {% endif %}
{{ NewDevice }} {{ NewDevice | default }}
{% if call_light_check == 1 %} {% if call_light_check == 1 %}
{{ light_check() }} {{ light_check() }}
@ -344,7 +344,7 @@
{% endif %} {% endif %}
{% if value1 is not none %} {% if value1 is not none %}
{{ value1 }} {{ value1 | default }}
{% endif %} {% endif %}
{# call a Random fact about the house or inspiration quote #} {# call a Random fact about the house or inspiration quote #}

File diff suppressed because one or more lines are too long