1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-21 03:20:01 +00:00
Files
core/homeassistant/components/flo/const.py
2025-02-11 17:42:58 +01:00

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]