Last active
July 26, 2021 17:51
-
-
Save GuySie/3c06ea770b71a25c445545b94f268891 to your computer and use it in GitHub Desktop.
Home Assistant Apple Watch Buienalarm Complication
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{%- set raindata = state_attr("sensor.neerslag_buienalarm_regen_data","data")["precip"] %} | |
{%- for fifteenminutes in raindata|batch(3) %} | |
{%- if loop.index > 8 %}{{""}} | |
{%- else %} | |
{%- set rainintensity = fifteenminutes|max %} | |
{%- if rainintensity < 0.1 %}{{"▁"}} | |
{%- elif 0.1 <= rainintensity < 0.5 %}{{"▂"}} | |
{%- elif 0.5 <= rainintensity < 1 %}{{"▃"}} | |
{%- elif 1 <= rainintensity < 1.5 %}{{"▄"}} | |
{%- elif 1.5 <= rainintensity < 2 %}{{"▅"}} | |
{%- elif 2 <= rainintensity < 3.5 %}{{"▆"}} | |
{%- elif 3.5 <= rainintensity < 5 %}{{"▇"}} | |
{%- elif 5 <= rainintensity < 10 %}{{"█"}} | |
{%- else %}{{"▓"}} | |
{%- endif %} | |
{%- endif %} | |
{%- endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment