core/homeassistant/components/luftdaten/const.py

12 lines
222 B
Python
Raw Normal View History

"""Define constants for the Sensor.Community integration."""
from datetime import timedelta
2019-07-31 19:25:30 +00:00
ATTR_SENSOR_ID = "sensor_id"
2019-07-31 19:25:30 +00:00
CONF_SENSOR_ID = "sensor_id"
DEFAULT_SCAN_INTERVAL = timedelta(minutes=10)
2019-07-31 19:25:30 +00:00
DOMAIN = "luftdaten"