Home Assistant dashboard: Weather
Here you can find weather related examples for your own dashboard.
Here you can also find Dutch weather elements.
Table of Contents
Lightning and thunderstorm
Show an iframe with the realtime lightning and thunderstorm activities from blitzortung.org.
# Sourcecode by vdbrink.github.io
# Dashboard card code
type: iframe
url: >-
https://map.blitzortung.org/index.php?interactive=0&NavigationControl=0&FullScreenControl=0&Cookies=0&InfoDiv=0&MenuButtonDiv=1&ScaleControl=1&LinksCheckboxChecked=1&LinksRangeValue=10&MapStyle=0&MapStyleRangeValue=0&Advertisment=#10/52.100676/5.168668
aspect_ratio: '1:0.6'
Outside pressure, good vs bad
A template that indicates good or bad based on a threshold value.
# Sourcecode by vdbrink.github.io
# Dashboard card code
- platform: template
sensors:
temp_pressure_ok:
friendly_name: "temp_pressure_ok"
value_template: >-
{% if states('sensor.temp_outside_pressure') | int > 1000 %}
good
{% else %}
bad
{% endif %}
<< See also my other Home Assistant tips and tricks
Top | Homepage | Best Buy Tips