Yahoo Weather Configuration - Forecast

Am I missing something here? I cant seem to display the forecast in the next days.

my config (pretty much the same as the example on HA website)

- platform: yweather
  woeid: <redacted>
  forecast: 3
  monitored_conditions:
   - weather
   - temp_min
   - temp_max

and i dont see any 3 day forecast.

Help and thanks!

I’ve been wondering the same thing…have the same config as well and not seeing the forecast.

You will only see the forecast for day 3 using that set up. In order to see all three days, you’d need to create three separate sensors like this:

- platform: yweather
  forecast: 1
  name: day1
  monitored_conditions:
    - weather
    - temp_min
    - temp_max

- platform: yweather
  forecast: 2
  name: day2
  monitored_conditions:
    - weather
    - temp_min
    - temp_max

- platform: yweather
  forecast: 3
  name: day3
  monitored_conditions:
    - weather
    - temp_min
    - temp_max

It isn’t clear in the docs so I put in a PR to correct this and explain it better.

2 Likes

Thank you!

thank you @rpitera tested and they work great!

Cheers

1 Like

No problem - BTW the PR for the updated docs was merged so this should help folks in the future.