No data in weather widget

The weather widget doesn’t show any data or icon.

I’m using beta3, but the issue was also present in beta2
In Chrome the console shows some errors.

All the required Dark Sky sensors are working in HA.
They are also present in a GET request from the API.

What’s your widget YAML look like for the weather widget?

Also, do a shift+refresh and see if there is any change and verify that you have current data in your dark sky sensors for the following:

  • sensor.dark_sky_apparent_temperature
  • sensor.dark_sky_humidity
  • sensor.dark_sky_icon
  • sensor.dark_sky_precip
  • sensor.dark_sky_precip_probability
  • sensor.dark_sky_pressure
  • sensor.dark_sky_wind_bearing
  • sensor.dark_sky_wind_speed

Hi rpitera,

The contents of weather.yaml are:

widget_type: baseweather
fields:
unit: “”
dark_sky_temperature: “”
dark_sky_humidity: “”
dark_sky_precip_probability: “”
dark_sky_precip_intensity: “”
dark_sky_wind_speed: “”
dark_sky_pressure: “”
dark_sky_wind_bearing: “”
dark_sky_apparent_temperature: “”
dark_sky_icon: “”
css: []
static_css:
unit_style: $weather_unit_style
main_style: $weather_main_style
sub_style: $weather_sub_style
widget_style: $weather_widget_style
icons: []
static_icons: []

A shift+refresh makes no difference and all Dark Sky sensors have current data.
When I first started with HAD (3 months ago) the weather widget worked, I don’t remember what changed to cause the widget failure.
What I know is that at first only the weather icon wasn’t showing anymore, now there’s nothing.

Geez, I’m sorry; I wasn’t clear on what I was asking for. What I meant to say was what does the YAML for your dash look like where you are declaring the weather widget in - sorry to be so confusing.

For instance, here is mine:

weather:
    widget_type: weather
    unit: "°F"

And in HA, here is my setup for Darksky:

#
#
# Weather (darksky.io)
#
-  platform: darksky
   api_key: !secret forecast_io_api_key
   update_interval: 300
   monitored_conditions:
     - summary
     - icon
     - nearest_storm_distance
     - precip_type
     - precip_intensity
     - precip_probability
     - temperature
     - apparent_temperature
     - dew_point
     - wind_speed
     - wind_bearing
     - cloud_cover
     - humidity
     - pressure
     - visibility
     - ozone
     - minutely_summary
     - hourly_summary
     - daily_summary

Can you check mine against yours and see if there are any differences?

The weather is alive!
The difference between our settings was that in my dash the weather was defined as weather.weather (2x2), while yours was only weather (with the parameters specifieke in a weather section).

Thanks for your help!

1 Like