mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 01:38:02 +00:00
12 lines
214 B
Python
12 lines
214 B
Python
"""Constants for the flo integration."""
|
|
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DOMAIN = "flo"
|
|
FLO_HOME = "home"
|
|
FLO_AWAY = "away"
|
|
FLO_SLEEP = "sleep"
|
|
FLO_MODES = [FLO_HOME, FLO_AWAY, FLO_SLEEP]
|