Skip to content

Commit

Permalink
improve doc
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Villaro-Dixon <[email protected]>
  • Loading branch information
Frankkkkk committed Oct 19, 2023
1 parent c713d12 commit fcb26fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions daikin_altherma/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def outdoor_temperature(self) -> float:

@property
def indoor_setpoint_temperature(self) -> float:
""" Returns the indoor temperature, in °C """
""" Returns the indoor setpoint (target) temperature, in °C """
return self._requestValueHP(
"1/Operation/TargetTemperature/la", "/m2m:rsp/pc/m2m:cin/con"
)
Expand Down Expand Up @@ -107,7 +107,7 @@ def power_consumption(self) -> dict:
return self._requestValueHP("1/Consumption/la", "m2m:rsp/pc/m2m:cin/con")

def set_setpoint_temperature(self, setpoint_temperature_c: float):
""" Sets the heating setpoint temperature"""
""" Sets the heating setpoint (target) temperature, in °C"""
payload = {
'con': setpoint_temperature_c,
'cnf': 'text/plain:0',
Expand Down

0 comments on commit fcb26fb

Please sign in to comment.