hass-core/homeassistant/components/luftdaten/const.py
Fabian Affolter 2e517ab6bc
Enable config flow for Luftdaten (#17700)
* Move file to new location

* Update requirement

* Enable config flow

* Add luftdaten

* Add tests

* Update

* Add constants

* Changes according to the review comments

* Remove wrong entry from flows

* Fix dict handling

* Add callback and use OrderedDict

* Remve leftover

* Fix

* Remove await
2018-11-06 14:27:52 +01:00

10 lines
212 B
Python

"""Define constants for the Luftdaten component."""
from datetime import timedelta
ATTR_SENSOR_ID = 'sensor_id'
CONF_SENSOR_ID = 'sensor_id'
DEFAULT_SCAN_INTERVAL = timedelta(minutes=10)
DOMAIN = 'luftdaten'