Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions PyViCare/PyViCareHeatingDevice.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,10 @@ def getDomesticHotWaterMinTemperature(self):
def getDomesticHotWaterChargingActive(self):
return self.service.getProperty("heating.dhw.charging")["properties"]["active"]["value"]

@handleNotSupported
def getDomesticHotWaterOperatingMode(self):
return self.service.getProperty("heating.dhw.operating.modes.active")["properties"]["value"]["value"]

Comment on lines +165 to +168
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should update the getDomesticHotWaterActiveMode function.

@handleAPICommandErrors
def setDomesticHotWaterTemperature(self, temperature):
""" Set the target temperature for domestic host water
Expand Down
Loading