mirror of
https://github.com/michivonah/esphome-eink-dashboard.git
synced 2025-12-22 21:16:28 +01:00
Merge branch 'main' into main
This commit is contained in:
commit
310134fdc2
1 changed files with 4 additions and 4 deletions
|
|
@ -84,7 +84,7 @@ template:
|
||||||
{% set next_setting = as_timestamp(state_attr('sun.sun', 'next_setting')) %}
|
{% set next_setting = as_timestamp(state_attr('sun.sun', 'next_setting')) %}
|
||||||
{% set next_rising = as_timestamp(state_attr('sun.sun', 'next_rising')) %}
|
{% set next_rising = as_timestamp(state_attr('sun.sun', 'next_rising')) %}
|
||||||
{% set cond0_time = as_timestamp(state_attr('weather.valhalla_hourly', 'forecast')[0].datetime) %}
|
{% set cond0_time = as_timestamp(state_attr('weather.valhalla_hourly', 'forecast')[0].datetime) %}
|
||||||
{% if cond0_time > next_setting and cond0_time < next_rising %}
|
{% if cond0_time < next_rising and next_rising < next_setting %}
|
||||||
{% if cond0 == 'sunny' %} night {% elif cond0 == 'partlycloudy' %} night-partly-cloudy {% else %} {{ cond0 }} {% endif %}
|
{% if cond0 == 'sunny' %} night {% elif cond0 == 'partlycloudy' %} night-partly-cloudy {% else %} {{ cond0 }} {% endif %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ cond0 }}
|
{{ cond0 }}
|
||||||
|
|
@ -99,7 +99,7 @@ template:
|
||||||
{% set next_setting = as_timestamp(state_attr('sun.sun', 'next_setting')) %}
|
{% set next_setting = as_timestamp(state_attr('sun.sun', 'next_setting')) %}
|
||||||
{% set next_rising = as_timestamp(state_attr('sun.sun', 'next_rising')) %}
|
{% set next_rising = as_timestamp(state_attr('sun.sun', 'next_rising')) %}
|
||||||
{% set cond1_time = as_timestamp(state_attr('weather.valhalla_hourly', 'forecast')[1].datetime) %}
|
{% set cond1_time = as_timestamp(state_attr('weather.valhalla_hourly', 'forecast')[1].datetime) %}
|
||||||
{% if cond1_time > next_setting and cond1_time < next_rising %}
|
{% if cond1_time < next_rising and next_rising < next_setting %}
|
||||||
{% if cond1 == 'sunny' %} night {% elif cond1 == 'partlycloudy' %} night-partly-cloudy {% else %} {{ cond1 }} {% endif %}
|
{% if cond1 == 'sunny' %} night {% elif cond1 == 'partlycloudy' %} night-partly-cloudy {% else %} {{ cond1 }} {% endif %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ cond1 }}
|
{{ cond1 }}
|
||||||
|
|
@ -114,7 +114,7 @@ template:
|
||||||
{% set next_setting = as_timestamp(state_attr('sun.sun', 'next_setting')) %}
|
{% set next_setting = as_timestamp(state_attr('sun.sun', 'next_setting')) %}
|
||||||
{% set next_rising = as_timestamp(state_attr('sun.sun', 'next_rising')) %}
|
{% set next_rising = as_timestamp(state_attr('sun.sun', 'next_rising')) %}
|
||||||
{% set cond2_time = as_timestamp(state_attr('weather.valhalla_hourly', 'forecast')[2].datetime) %}
|
{% set cond2_time = as_timestamp(state_attr('weather.valhalla_hourly', 'forecast')[2].datetime) %}
|
||||||
{% if cond2_time > next_setting and cond2_time < next_rising %}
|
{% if cond2_time < next_rising and next_rising < next_setting %}
|
||||||
{% if cond2 == 'sunny' %} night {% elif cond2 == 'partlycloudy' %} night-partly-cloudy {% else %} {{ cond2 }} {% endif %}
|
{% if cond2 == 'sunny' %} night {% elif cond2 == 'partlycloudy' %} night-partly-cloudy {% else %} {{ cond2 }} {% endif %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ cond2 }}
|
{{ cond2 }}
|
||||||
|
|
@ -129,7 +129,7 @@ template:
|
||||||
{% set next_setting = as_timestamp(state_attr('sun.sun', 'next_setting')) %}
|
{% set next_setting = as_timestamp(state_attr('sun.sun', 'next_setting')) %}
|
||||||
{% set next_rising = as_timestamp(state_attr('sun.sun', 'next_rising')) %}
|
{% set next_rising = as_timestamp(state_attr('sun.sun', 'next_rising')) %}
|
||||||
{% set cond3_time = as_timestamp(state_attr('weather.valhalla_hourly', 'forecast')[3].datetime) %}
|
{% set cond3_time = as_timestamp(state_attr('weather.valhalla_hourly', 'forecast')[3].datetime) %}
|
||||||
{% if cond3_time > next_setting and cond3_time < next_rising %}
|
{% if cond3_time < next_rising and next_rising < next_setting %}
|
||||||
{% if cond3 == 'sunny' %} night {% elif cond3 == 'partlycloudy' %} night-partly-cloudy {% else %} {{ cond3 }} {% endif %}
|
{% if cond3 == 'sunny' %} night {% elif cond3 == 'partlycloudy' %} night-partly-cloudy {% else %} {{ cond3 }} {% endif %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ cond3 }}
|
{{ cond3 }}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue