Skip to content

Commit c53bfe1

Browse files
committed
Add ActuatorDataType Literals
1 parent f9b2438 commit c53bfe1

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

plugwise/constants.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,14 @@
4747
"thermostat",
4848
]
4949
ACTIVE_ACTUATORS: Final[tuple[str, ...]] = get_args(ActuatorType)
50-
50+
ActuatorDataType = Literal[
51+
"lower_bound",
52+
"resolution",
53+
"setpoint",
54+
"setpoint_high",
55+
"setpoint_low",
56+
"upper_bound",
57+
]
5158
DAYS: Final[dict[str, int]] = {
5259
"mo": 0,
5360
"tu": 1,

0 commit comments

Comments
 (0)