2020-08-10 12:19:38 +00:00
|
|
|
"""Constants for the flo integration."""
|
2020-11-20 20:14:44 +00:00
|
|
|
import logging
|
|
|
|
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
|
2020-08-31 13:37:45 +00:00
|
|
|
CLIENT = "client"
|
2020-08-10 12:19:38 +00:00
|
|
|
DOMAIN = "flo"
|
2020-08-31 13:37:45 +00:00
|
|
|
FLO_HOME = "home"
|
|
|
|
FLO_AWAY = "away"
|
|
|
|
FLO_SLEEP = "sleep"
|
|
|
|
FLO_MODES = [FLO_HOME, FLO_AWAY, FLO_SLEEP]
|