Skip to content

Commit

Permalink
Release 0.3.2
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 31, 2023
1 parent 4acec85 commit 67db388
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,20 @@ look at the [example file](example.py).
| set_heating_schedule(self, schedule: dict[str, dict[str, float]])
| Sets the heating schedule for the heating.
|
| set_holiday_mode(self, on_holiday: bool)
| Whether to turn the holiday mode on(True) or off(False).
| You can confirm that it works by calling self.is_holiday_mode
|
| set_setpoint_temperature(self, setpoint_temperature_c: float)
| Sets the heating setpoint (target) temperature, in °C
|
| set_tank_heating_enabled(self, powerful_active: bool)
| Whether to turn the water tank heating on(True) or off(False).
| You can confirm that it works by calling self.is_tank_heating_enabled
|
| set_unit_datetime(self, d)
| Sets the datetime of your unit. Does not work on all units
|
| ----------------------------------------------------------------------
| Readonly properties defined here:
|
Expand Down Expand Up @@ -91,6 +98,9 @@ look at the [example file](example.py).
| is_heating_enabled
| Returns if the unit heating is enabled
|
| is_holiday_mode
| Returns if the holiday mode active or not
|
| is_tank_heating_enabled
| Returns if the tank heating is currently enabled
|
Expand Down Expand Up @@ -131,7 +141,7 @@ look at the [example file](example.py).
| Returns the hot water tank temperature, in °C
|
| unit_datetime
| Returns the current date of the unit. Takes time to refresh
| Returns the current date of the unit. Is refreshed every minute or so
|
| unit_model
| Returns the model of the heating unit.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def read(fname):

setup(
name = "python-daikin-altherma",
version = "0.3.1",
version = "0.3.2",
author = "Frank Villaro-Dixon",
author_email = "[email protected]",
description = ("Connect to daikin altherma heat pumps"),
Expand Down

0 comments on commit 67db388

Please sign in to comment.