Hi
I’m only new to Hassbian and I wanted to do a weather forecast section, but when I searched for that, I found Weather forecast card - Home Assistant
Unfortunately, for newbies like me, I found the documentation to be “lacking”.
For example, to simply say:
(string)(Required)The entity_id
of the weather
platform to use.
and show the example of:
entity: weather.demo_weather_north
didn’t really mean much to me since I’m a newbie.
Where do we find these “weather” platforms? I noticed in this thread, radinsky uses weather.yweather. Is this the only one? (edit: I found this page which has links to other weather services like BOM. I’ll need to read this further.)
I’m feeling lost when it comes to doing things in HA when you get pages like the weather forecast page linked above that seem to assume you know things such as weather platforms etc. I actually got to this forum page “accidentally” as I searched Google for the term “weather platform lovelace home assistant” to learn what weather platforms were available.
I have:
# Weather YWeather
sensor:
- platform: yweather
monitored_conditions:
- weather
- weather_current
- temp_min
- temp_max
- wind_speed
- pressure
- visibility
- humidity
- temperature
in my configuration.yaml file that gives me icons at the top of the page, but to get the card in lovelace, radinsky says to have:
# Weather YWeather
weather:
- platform: yweather
in the configuration.yaml file. Without it at the moment I’m getting an error in the lovelace interface.
Do I combine them to look like:
# Weather YWeather
sensor:
- platform: yweather
monitored_conditions:
- weather
- weather_current
- temp_min
- temp_max
- wind_speed
- pressure
- visibility
- humidity
- temperature
weather:
- platform: yweather
Thanks in advance.