"Feels Like" not showing up as an option for secondary info attribute in HA Weather Forecast Card #26
francis110
started this conversation in
Ideas
Replies: 1 comment 2 replies
-
I have no control over how this card displays "feels like" (or any other) data - you would need to open a bug with the card's maintainers. That said, you are correct that this integration is not setting the |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was able to make this an option by adding this to weather.py
@property def native_apparent_temperature(self) -> float: """Return the feelslike in native units.""" return self.coordinator.get_current(FIELD_FEELSLIKE)
However, only the value is displayed. When looking at the entity it appears as (degrees) F, but this is not coming through in the card.
I think this is a problem with HA, but I don't know enough to really say. Just a tinkerer.
Beta Was this translation helpful? Give feedback.
All reactions