mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-23 15:06:52 +01:00
11 lines
221 B
Python
11 lines
221 B
Python
"""Define constants for the Sensor.Community integration."""
|
|
from datetime import timedelta
|
|
|
|
ATTR_SENSOR_ID = "sensor_id"
|
|
|
|
CONF_SENSOR_ID = "sensor_id"
|
|
|
|
DEFAULT_SCAN_INTERVAL = timedelta(minutes=10)
|
|
|
|
DOMAIN = "luftdaten"
|