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