Skip to content

Dashboard Examples

Fischer, Fabian edited this page Apr 28, 2026 · 1 revision

Dashboard Examples

Basic Weather Card

type: weather-forecast
entity: weather.kachelmannwetter
show_current: true
show_forecast: true
forecast_type: daily

Hourly Forecast Card

type: weather-forecast
entity: weather.kachelmannwetter
show_current: true
show_forecast: true
forecast_type: hourly

Solar & Energy Overview

type: entities
title: "☀️ Solar Prognose"
entities:
  - entity: sensor.kachelmannwetter_global_radiation_today
    name: "Globalstrahlung heute"
  - entity: sensor.kachelmannwetter_global_radiation_tomorrow
    name: "Globalstrahlung morgen"
  - entity: sensor.kachelmannwetter_sun_hours_today
    name: "Sonnenstunden heute"
  - entity: sensor.kachelmannwetter_sun_hours_tomorrow
    name: "Sonnenstunden morgen"
  - entity: sensor.kachelmannwetter_sun_hours_relative_today
    name: "Relative Sonnenscheindauer"
  - entity: sensor.kachelmannwetter_cloud_coverage_low
    name: "Bewölkung tief"
  - entity: sensor.kachelmannwetter_cloud_coverage_medium
    name: "Bewölkung mittel"
  - entity: sensor.kachelmannwetter_cloud_coverage_high
    name: "Bewölkung hoch"

Astronomy Card

type: entities
title: "🌙 Astronomie"
entities:
  - entity: sensor.kachelmannwetter_sunrise
    name: "Sonnenaufgang"
  - entity: sensor.kachelmannwetter_sunset
    name: "Sonnenuntergang"
  - entity: sensor.kachelmannwetter_civil_dawn
    name: "Bürgerliche Dämmerung (Beginn)"
  - entity: sensor.kachelmannwetter_civil_dusk
    name: "Bürgerliche Dämmerung (Ende)"
  - entity: sensor.kachelmannwetter_moonrise
    name: "Mondaufgang"
  - entity: sensor.kachelmannwetter_moonset
    name: "Monduntergang"
  - entity: sensor.kachelmannwetter_moon_illumination
    name: "Mondbeleuchtung"
  - entity: sensor.kachelmannwetter_moon_phase
    name: "Mondphase"
  - entity: sensor.kachelmannwetter_next_full_moon
    name: "Nächster Vollmond"
  - entity: sensor.kachelmannwetter_next_new_moon
    name: "Nächster Neumond"

Warnings & Alerts

type: entities
title: "⚠️ Wetterwarnungen"
entities:
  - entity: binary_sensor.kachelmannwetter_rain_expected_3h
    name: "Regen in 3h"
  - entity: binary_sensor.kachelmannwetter_frost_expected_tonight
    name: "Frost heute Nacht"
  - entity: binary_sensor.kachelmannwetter_thunderstorm_expected
    name: "Gewitter erwartet"
  - entity: sensor.kachelmannwetter_wind_gust_today
    name: "Windböen heute"
  - entity: sensor.kachelmannwetter_precipitation_probability_today
    name: "Regenwahrscheinlichkeit"

Precipitation Overview

type: entities
title: "🌧️ Niederschlag"
entities:
  - entity: sensor.kachelmannwetter_precipitation_1h
    name: "Niederschlag letzte Stunde"
  - entity: sensor.kachelmannwetter_precipitation_probability_today
    name: "Regenwahrscheinlichkeit heute"
  - entity: sensor.kachelmannwetter_precipitation_probability_tomorrow
    name: "Regenwahrscheinlichkeit morgen"
  - entity: sensor.kachelmannwetter_precipitation_today
    name: "Niederschlag heute"
  - entity: sensor.kachelmannwetter_precipitation_tomorrow
    name: "Niederschlag morgen"
  - entity: sensor.kachelmannwetter_snow_height
    name: "Schneehöhe"
  - entity: sensor.kachelmannwetter_fresh_snow
    name: "Neuschnee"

Global Radiation History Graph

type: history-graph
title: "Globalstrahlung (7 Tage)"
hours_to_show: 168
entities:
  - entity: sensor.kachelmannwetter_global_radiation_current
    name: "Aktuell (W/m²)"

Mini Weather Glance

type: glance
title: "Wetter auf einen Blick"
entities:
  - entity: weather.kachelmannwetter
    name: "Aktuell"
  - entity: sensor.kachelmannwetter_precipitation_probability_today
    name: "Regen %"
  - entity: sensor.kachelmannwetter_sun_hours_today
    name: "Sonne h"
  - entity: sensor.kachelmannwetter_wind_gust_today
    name: "Böen"
  - entity: binary_sensor.kachelmannwetter_daytime
    name: "Tag"

Conditional Card — Show Warnings Only When Active

type: conditional
conditions:
  - condition: or
    conditions:
      - entity: binary_sensor.kachelmannwetter_thunderstorm_expected
        state: "on"
      - entity: binary_sensor.kachelmannwetter_frost_expected_tonight
        state: "on"
      - entity: binary_sensor.kachelmannwetter_rain_expected_3h
        state: "on"
card:
  type: entities
  title: "⚠️ Aktive Wetterwarnungen"
  entities:
    - entity: binary_sensor.kachelmannwetter_thunderstorm_expected
      name: "Gewitter"
    - entity: binary_sensor.kachelmannwetter_frost_expected_tonight
      name: "Frost"
    - entity: binary_sensor.kachelmannwetter_rain_expected_3h
      name: "Regen"

Clone this wiki locally