Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
Bugfix, when setting the thermostat manually the temp is now also vis…
Browse files Browse the repository at this point in the history
…ible here. Setting the temperature is only a little bit slower now 😢
  • Loading branch information
royduin committed Nov 21, 2018
1 parent 07e93a6 commit 78aab73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion InComfort.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def current_temperature(self):
def target_temperature(self):
"""Return the temperature we try to reach."""
if self.data is not None:
self._target_temperature = _lsbmsb(self.data['room_set_ovr_1_lsb'], self.data['room_set_ovr_1_msb'])
self._target_temperature = _lsbmsb(self.data['room_temp_set_1_lsb'], self.data['room_temp_set_1_msb'])
else:
self._target_temperature = None
return self._target_temperature
Expand Down

0 comments on commit 78aab73

Please sign in to comment.