core/homeassistant/components/wwlln/const.py

12 lines
204 B
Python
Raw Normal View History

"""Define constants for the WWLLN integration."""
from datetime import timedelta
2019-07-31 19:25:30 +00:00
DOMAIN = "wwlln"
2019-07-31 19:25:30 +00:00
CONF_WINDOW = "window"
2019-07-31 19:25:30 +00:00
DATA_CLIENT = "client"
DEFAULT_RADIUS = 25
DEFAULT_WINDOW = timedelta(hours=1)