1
mirror of https://github.com/home-assistant/core synced 2024-08-28 03:36:46 +02:00
ha-core/homeassistant/components/flo/const.py
2020-11-20 21:14:44 +01:00

12 lines
231 B
Python

"""Constants for the flo integration."""
import logging
LOGGER = logging.getLogger(__package__)
CLIENT = "client"
DOMAIN = "flo"
FLO_HOME = "home"
FLO_AWAY = "away"
FLO_SLEEP = "sleep"
FLO_MODES = [FLO_HOME, FLO_AWAY, FLO_SLEEP]