hass-core/homeassistant/components/wwlln/const.py
Paulus Schoutsen 81810dd920
Modernize WWLLN config flow (#32194)
* Modernize WWLLN config flow

* Code review

* Update tests
2020-03-04 18:23:00 -08:00

14 lines
260 B
Python

"""Define constants for the WWLLN integration."""
from datetime import timedelta
import logging
LOGGER = logging.getLogger(__package__)
DOMAIN = "wwlln"
CONF_WINDOW = "window"
DATA_CLIENT = "client"
DEFAULT_RADIUS = 25
DEFAULT_WINDOW = timedelta(hours=1)