CondorWonder,

Maybe a template sensor over the openweathermap_forecast_condition state? You can pretty easily have a template change its icon, and mdi: has all the icons built in.

Here’s a template I use for current condition in a card, but it should work similarly for the forecast. Or works just need to be applied to the icon of a template sensor.


<span style="color:#323232;">{{ iif(
</span><span style="color:#323232;">        is_state("weather.openweathermap", "partlycloudy"), "mdi:weather-partly-cloudy", 
</span><span style="color:#323232;">        iif(is_state("weather.openweathermap", "clear-night"), "mdi:weather-night",
</span><span style="color:#323232;">        iif(is_state("weather.openweathermap", "exceptional"), "mdi:exclamation-thick",
</span><span style="color:#323232;">        "mdi:weather-" + states("weather.openweathermap"
</span><span style="color:#323232;">        )))) }}
</span>
  • All
  • Subscribed
  • Moderated
  • Favorites
  • homeassistant@lemmy.world
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #