jamie
(Jamie)
June 11, 2018, 2:47am
1
Looking at the docs for dark sky (https://www.home-assistant.io/components/sensor.darksky/ )- is there a way to get an hour-by-hour forecast? Looking for something like you would find on something like https://weather.com/weather/hourbyhour/l/28104:4:US
I see it in their API (https://darksky.net/dev/docs ) but can’t find a corresponding sensor.
Thanks
tinmice
(Tinmice)
March 11, 2019, 7:22pm
2
Hey, did you get anywhere with this in the end? I see the Darksky weather component has hourly, but only seems to pull through the temperature and icons?
jamie
(Jamie)
March 12, 2019, 12:46pm
3
No, I didn’t. I ended up simply embedding an iframe on my ha-dashboard:
weather_frame:
# Generate your link - https://www.wunderground.com/weather-radar/united-states/
widget_type: iframe
title: Radar
refresh: 200
frame_style: ""
img_list:
- https://icons.wxug.com/data/weather-maps/radar/united-states/charlotte-north-carolina-region-current-radar-animation.gif
Which was what I was wanting to use it for
Isablend
(Robin)
March 12, 2019, 1:19pm
4
The darksky API defaults to hour information (as I undestand it), I use the following;
# weather information platform
weather:
- platform: darksky
api_key: !secret darksky_api
scan_interval: '01:00'
I then use a custom card to display the information of which there are a few examples in the forum.