I would like to create a card on my dashboard for the hourly weather, like i get on my smart phone. Where it shows the hourly forecast for the next 6 hours or so.
I noticed that the weather.home_hourly entity has the information, but I’m not sure how to extract this and make it available to a card on the dashboard.
Here is a snippet from the entity, showing the hourly forecast with multiple condition blocks. There are 24 condition blocks in the forecast section, but I would only want to go after the first 6 or so, showing the condition (forecast), temperature, and hour.
temperature: 50.2
humidity: 71
pressure: 30.32
wind_bearing: 233.4
wind_speed: 6
attribution: >-
Weather forecast from met.no, delivered by the Norwegian Meteorological
Institute.
forecast:
- condition: partlycloudy
temperature: 48
datetime: '2020-11-21T02:00:00+00:00'
wind_bearing: 272.6
wind_speed: 6.1
- condition: partlycloudy
temperature: 46.8
datetime: '2020-11-21T03:00:00+00:00'
wind_bearing: 311.4
wind_speed: 6.8
- condition: partlycloudy
temperature: 48.6
datetime: '2020-11-21T04:00:00+00:00'
wind_bearing: 311.9
wind_speed: 9
Any advice?
Thanks!