10 lines
212 B
Python
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"
|