Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion PyTado/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,14 @@
CONST_FAN_HIGH = "HIGH"

# When we change the temperature setting, we need an overlay mode
CONST_OVERLAY_TADO_MODE = "NEXT_TIME_BLOCK" # wait until tado changes the mode automatic
# The tado API distinguishes between type and typeSkillBasedApp
# There are 3 main types: TADO_MODE, MANUAL, and TIMER
# The TIMER Type can be used with either typeSkillBasedApp TIMER to wait an also provided time or with NEXT_TIME_BLOCK which automatically sets the time until the next time block for the zone begins
CONST_OVERLAY_TADO_MODE = "TADO_MODE" # wait until tado changes the mode automatic (e.g., by next time block or change in home state)
CONST_OVERLAY_MANUAL = "MANUAL" # the user has change the temperature or mode manually
CONST_OVERLAY_TIMER = "TIMER" # the temperature will be reset after a timespan
CONST_OVERLAY_NEXT_TIME_BLOCK = "NEXT_TIME_BLOCK" # set overlay until start of the next time block (ignoring intermediate home state changes)


# Heat always comes first since we get the
# min and max tempatures for the zone from
Expand Down