Wind forecase in Dashboard

Kann mir jemand sagen wie ich so etwas in HA realisieren kann (Screenshot: links sind die Daten und das in rechts würde ich gerne im Dashboard anzeigen)?

Daten kommen aus weather.forecast_home

Moin,
hab dir hier einmal was gebaut mit der Mushroom template card gebaut.
image

type: horizontal-stack
cards:
  - type: custom:mushroom-template-card
    primary: Heute
    secondary: '{{ state_attr(''weather.home'',''forecast'')[0].wind_speed }} km/h'
    icon: ''
    multiline_secondary: true
    layout: vertical
  - type: custom:mushroom-template-card
    primary: Morgen
    secondary: '{{ state_attr(''weather.home'',''forecast'')[1].wind_speed }} km/h'
    multiline_secondary: true
    layout: vertical
  - type: custom:mushroom-template-card
    primary: Übermorgen
    secondary: '{{ state_attr(''weather.home'',''forecast'')[2].wind_speed }} km/h'
    multiline_secondary: true
    layout: vertical
  - type: custom:mushroom-template-card
    primary: in 3 Tagen
    secondary: '{{ state_attr(''weather.home'',''forecast'')[3].wind_speed }} km/h'
    multiline_secondary: true
    layout: vertical

in dem Fall müsstest du überall im yaml-code weather.home durch weather.forecast_home ersetzen.

LG
Tobi

2 „Gefällt mir“