Skip to content

Commit

Permalink
Fixed heating status
Browse files Browse the repository at this point in the history
  • Loading branch information
herikw committed Oct 18, 2019
1 parent e06eb3c commit 0e41bf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/atagone/climate.py
Expand Up @@ -212,7 +212,7 @@ def update(self):
_LOGGER.debug("Preset: %s", self._preset)

boiler_status = int(self._data['report']['boiler_status']) & 14
if boiler_status == 2:
if boiler_status == 10:
self._heating = True
else:
self._heating = False
Expand Down

0 comments on commit 0e41bf6

Please sign in to comment.