Weather Help

I am trying to get simple weather data to display.

If I add this to my configuration.yaml file I see nothing. (I do have an api key)

sensor:
  - platform: darksky
    api_key: YOUR_API_KEY
    monitored_conditions:
      - summary
      - icon
      - nearest_storm_distance

Is there a specific location I need to add the sensor data?

sensor:
  - platform: yr

I replaced the above with the darksky data but I see nothing on the states page.

I am serving HA 0.62.0 through docker with a Synology NAS.

Thanks

This is what I have on my RPi 3 Hassio:
In the configuration file under sensor.

sensor:
  - platform: darksky
    api_key: !secret darksky_api_key
    latitude: !secret latitude_home
    longitude: !secret longitude_home
    monitored_conditions:
      - temperature
      - humidity
      - precip_probability
      - precip_intensity
      - wind_speed
      - pressure
      - wind_bearing
      - apparent_temperature

In the groups file.

weather:
  name: weather
  entities:
  - group.weather_group

weather_group:
  name: Local Weather
  entities:
  - sensor.dark_sky_temperature
  - sensor.dark_sky_apparent_temperature
  - sensor.dark_sky_pressure
  - sensor.dark_sky_humidity
  - sensor.dark_sky_precip_intensity
  - sensor.dark_sky_precip_probability
  - sensor.dark_sky_wind_speed
  - sensor.dark_sky_wind_bearing

This is what I have on the frontend.
2018-02-03_12-27-26
Hope it helps.

1 Like