From 1689b5fc002f7557ba9577c48eaea8e62bca2ee2 Mon Sep 17 00:00:00 2001 From: Julian Tabel Date: Mon, 29 Jun 2026 15:32:03 +0200 Subject: [PATCH] Expand weather section with detailed current conditions and hourly forecast Replace single forecast card with a split layout: entities card on the left (condition, feels-like, wind, gusts, cloud coverage, UV, precipitation) and hourly weather-forecast card on the right. Co-Authored-By: Claude Sonnet 4.6 --- dashboards/klima.yaml | 31 +++++++++++++++++++++++++++---- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/dashboards/klima.yaml b/dashboards/klima.yaml index d58a4e8..5e320c2 100644 --- a/dashboards/klima.yaml +++ b/dashboards/klima.yaml @@ -6,10 +6,33 @@ views: sections: - column_span: 2 cards: - - type: weather-forecast - entity: weather.openweathermap - forecast_type: daily - name: Weather Forecast + - type: horizontal-stack + cards: + - type: entities + title: Outside Now + entities: + - entity: sensor.openweathermap_condition + name: Condition + - entity: sensor.openweathermap_temperature + name: Temperature + - entity: sensor.openweathermap_feels_like_temperature + name: Feels Like + - entity: sensor.openweathermap_humidity + name: Humidity + - entity: sensor.openweathermap_wind_speed + name: Wind Speed + - entity: sensor.openweathermap_wind_gust + name: Wind Gust + - entity: sensor.openweathermap_cloud_coverage + name: Cloud Coverage + - entity: sensor.openweathermap_uv_index + name: UV Index + - entity: sensor.openweathermap_precipitation_kind + name: Precipitation + - type: weather-forecast + entity: weather.openweathermap + forecast_type: hourly + name: Hourly Forecast - cards: - type: entities