Skip to content

Commit

Permalink
J-385 adds a "READY" HeatMode and an "ON" LightMode (#39)
Browse files Browse the repository at this point in the history
Co-authored-by: sfowers <[email protected]>
  • Loading branch information
fowie and sfowers authored Nov 4, 2023
1 parent 56a7159 commit 3b147a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smarttub/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def __str__(self):


class Spa:
HeatMode = Enum("HeatMode", "ECONOMY DAY AUTO")
HeatMode = Enum("HeatMode", "ECONOMY DAY AUTO READY")
TemperatureFormat = Enum("TemperatureFormat", "FAHRENHEIT CELSIUS")
EnergyUsageInterval = Enum("EnergyUsageInterval", "DAY MONTH")

Expand Down Expand Up @@ -450,7 +450,7 @@ def __str__(self):
class SpaLight:
LightMode = Enum(
"LightMode",
"PURPLE ORANGE RED YELLOW GREEN AQUA BLUE WHITE AMBER HIGH_SPEED_COLOR_WHEEL HIGH_SPEED_WHEEL FULL_DYNAMIC_RGB AUTO_TIMER_EXTERIOR PARTY OFF",
"PURPLE ORANGE RED YELLOW GREEN AQUA BLUE WHITE AMBER HIGH_SPEED_COLOR_WHEEL HIGH_SPEED_WHEEL FULL_DYNAMIC_RGB AUTO_TIMER_EXTERIOR PARTY OFF ON",
)

def __init__(self, spa: Spa, **properties):
Expand Down

0 comments on commit 3b147a3

Please sign in to comment.