Adding update entity to ensure sensors update

This commit is contained in:
Jeffrey Stone 2020-06-07 19:35:28 -04:00
parent 3bdce9e1f6
commit 12df7b54f1
1 changed files with 6 additions and 0 deletions

View File

@ -47,6 +47,7 @@ sensor:
sensors: sensors:
flood_watch: flood_watch:
friendly_name: 'Flood Watch' friendly_name: 'Flood Watch'
entity_id: sensor.time
value_template: >- value_template: >-
{% if 'Flood Watch' in states.sensor.nws_alerts.attributes.title.split(' - ')[0] or {% if 'Flood Watch' in states.sensor.nws_alerts.attributes.title.split(' - ')[0] or
'Flood Watch' in states.sensor.nws_alerts.attributes.title.split(' - ')[1] or 'Flood Watch' in states.sensor.nws_alerts.attributes.title.split(' - ')[1] or
@ -61,6 +62,7 @@ sensor:
{% endif %} {% endif %}
flood_warning: flood_warning:
friendly_name: 'Flood Warning' friendly_name: 'Flood Warning'
entity_id: sensor.time
value_template: >- value_template: >-
{% if 'Flood Warning' in states.sensor.nws_alerts.attributes.title.split(' - ')[0] or {% if 'Flood Warning' in states.sensor.nws_alerts.attributes.title.split(' - ')[0] or
'Flood Warning' in states.sensor.nws_alerts.attributes.title.split(' - ')[1] or 'Flood Warning' in states.sensor.nws_alerts.attributes.title.split(' - ')[1] or
@ -75,6 +77,7 @@ sensor:
{% endif %} {% endif %}
tstorm_warning: tstorm_warning:
friendly_name: 'Thunderstorm Warning' friendly_name: 'Thunderstorm Warning'
entity_id: sensor.time
value_template: >- value_template: >-
{% if 'Thunderstorm Warning' in states.sensor.nws_alerts.attributes.title.split(' - ')[0] or {% if 'Thunderstorm Warning' in states.sensor.nws_alerts.attributes.title.split(' - ')[0] or
'Thunderstorm Warning' in states.sensor.nws_alerts.attributes.title.split(' - ')[1] or 'Thunderstorm Warning' in states.sensor.nws_alerts.attributes.title.split(' - ')[1] or
@ -89,6 +92,7 @@ sensor:
{% endif %} {% endif %}
tstorm_watch: tstorm_watch:
friendly_name: 'Thunderstorm Watch' friendly_name: 'Thunderstorm Watch'
entity_id: sensor.time
value_template: >- value_template: >-
{% if 'Thunderstorm Watch' in states.sensor.nws_alerts.attributes.title.split(' - ')[0] or {% if 'Thunderstorm Watch' in states.sensor.nws_alerts.attributes.title.split(' - ')[0] or
'Thunderstorm Watch' in states.sensor.nws_alerts.attributes.title.split(' - ')[1] or 'Thunderstorm Watch' in states.sensor.nws_alerts.attributes.title.split(' - ')[1] or
@ -103,6 +107,7 @@ sensor:
{% endif %} {% endif %}
tornado_watch: tornado_watch:
friendly_name: 'Tornado Watch' friendly_name: 'Tornado Watch'
entity_id: sensor.time
value_template: >- value_template: >-
{% if 'Tornado Watch' in states.sensor.nws_alerts.attributes.title.split(' - ')[0] or {% if 'Tornado Watch' in states.sensor.nws_alerts.attributes.title.split(' - ')[0] or
'Tornado Watch' in states.sensor.nws_alerts.attributes.title.split(' - ')[1] or 'Tornado Watch' in states.sensor.nws_alerts.attributes.title.split(' - ')[1] or
@ -117,6 +122,7 @@ sensor:
{% endif %} {% endif %}
tornado_warning: tornado_warning:
friendly_name: 'Tornado Warning' friendly_name: 'Tornado Warning'
entity_id: sensor.time
value_template: >- value_template: >-
{% if 'Tornado Warning' in states.sensor.nws_alerts.attributes.title.split(' - ')[0] or {% if 'Tornado Warning' in states.sensor.nws_alerts.attributes.title.split(' - ')[0] or
'Tornado Warning' in states.sensor.nws_alerts.attributes.title.split(' - ')[1] or 'Tornado Warning' in states.sensor.nws_alerts.attributes.title.split(' - ')[1] or