-
Notifications
You must be signed in to change notification settings - Fork 161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LG Heat Pump-thermostat card shows wrong temperature #643
Comments
I don't have a Heat Pump device so I don't really know what current temperature means, but I'm quite sure that this check was implemented for a specific reason defined when this device was introduced. So I will not implement this change until the real meaning of current temp is clarified. By the way if you always want ROOM_TEMP, you should remove everything except the last 2 line. |
please take a look to issue #157. |
Thanks for coming back! All screenshots in #157 are not valid anymore, so I cannot understand what was the object |
If I understand right (I am not a developer) these "attributes" get pulled. |
Please check if with last release current temperature and related target range now are correct. |
Yes, now it seems right. Thank you! |
The thermostat card shows as current temperature the out_water temperature instead of the room_temperature.
I've made a correction in smartthinq_sensors/climate.py file and now it shows the correct temperature
@Property
def current_temperature(self) -> float:
"""Return the current temperature."""
curr_temp = None
if self._device.is_air_to_water:
curr_temp = self._api.state.device_features.get(
AirConditionerFeatures.ROOM_TEMP
)
if curr_temp is None:
curr_temp = self._api.state.device_features.get(
AirConditionerFeatures.ROOM_TEMP
)
return curr_temp
The text was updated successfully, but these errors were encountered: