mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 04:05:20 +01: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]
|