Skip to content

Commit 66a823c

Browse files
committed
Change MAX_/MIN_SETPOINT values
Make them equal to the lowest thermostat upper_bound, 30, and highest thermostat lower_bound, 4.
1 parent a28186f commit 66a823c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugwise/constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,8 +403,8 @@
403403
"upper_bound",
404404
"resolution",
405405
)
406-
MAX_SETPOINT: Final[float] = 40.0
407-
MIN_SETPOINT: Final[float] = 0.0
406+
MAX_SETPOINT: Final[float] = 30.0
407+
MIN_SETPOINT: Final[float] = 4.0
408408
SPECIAL_FORMAT: Final[tuple[str, ...]] = (ENERGY_KILO_WATT_HOUR, VOLUME_CUBIC_METERS)
409409
SWITCH_GROUP_TYPES: Final[tuple[str, ...]] = ("switching", "report")
410410
ZONE_THERMOSTATS: Final[tuple[str, ...]] = (

0 commit comments

Comments
 (0)