Lots of little bug fixes! #1141
This commit is contained in:
parent
16164f93f7
commit
348ea39056
|
@ -9,7 +9,7 @@ sensor:
|
||||||
sensors:
|
sensors:
|
||||||
last_alexa:
|
last_alexa:
|
||||||
value_template: >
|
value_template: >
|
||||||
{{ states.media_player | selectattr('attributes.last_called','eq',True) | map(attribute='entity_id') | first }}
|
{{ states.media_player | selectattr('attributes.last_called','eq',True) | map(attribute='entity_id') | first | default('none') }}
|
||||||
|
|
||||||
#-------------------------------------------
|
#-------------------------------------------
|
||||||
|
|
||||||
|
|
|
@ -40,15 +40,16 @@ sensor:
|
||||||
{{ holiday }}
|
{{ holiday }}
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Sensor Uses Flag data from this calendar - http://www.webcal.fi/en-US/flag_days.php
|
# Sensor Uses Flag data generated by AI
|
||||||
################################################################################
|
################################################################################
|
||||||
- platform: rest
|
- platform: rest
|
||||||
resource: https://raw.githubusercontent.com/CCOSTAN/Home-AssistantConfig/master/config/json_data/flag_days.json
|
resource: https://raw.githubusercontent.com/CCOSTAN/Home-AssistantConfig/master/config/json_data/flag_days.json
|
||||||
name: Flag
|
name: Flag
|
||||||
scan_interval: 14400
|
scan_interval: 14400
|
||||||
value_template: >-
|
value_template: >-
|
||||||
{%- set now_string = now().strftime('%m/%d') %}
|
{% set now_string = now().strftime('%m/%d') %}
|
||||||
{%- set now_full_string = now().strftime('%m/%d/%Y') %}
|
{% set now_full_string = now().strftime('%m/%d/%Y') %}
|
||||||
|
{% if value_json is defined and value_json.Flag_Days_US is defined %}
|
||||||
{% set static_days = value_json.Flag_Days_US.static %}
|
{% set static_days = value_json.Flag_Days_US.static %}
|
||||||
{% set dynamic_days = value_json.Flag_Days_US.dynamic %}
|
{% set dynamic_days = value_json.Flag_Days_US.dynamic %}
|
||||||
{% if static_days is defined and now_string in static_days %}
|
{% if static_days is defined and now_string in static_days %}
|
||||||
|
@ -62,6 +63,9 @@ sensor:
|
||||||
{% else %}
|
{% else %}
|
||||||
False
|
False
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% else %}
|
||||||
|
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Countdown Sensor using WolfRam Alpha Natural language queries
|
# Countdown Sensor using WolfRam Alpha Natural language queries
|
||||||
|
|
Loading…
Reference in New Issue