Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Define constants for the Sensor.Community integration."""
2 
3 from datetime import timedelta
4 
5 ATTR_SENSOR_ID = "sensor_id"
6 
7 CONF_SENSOR_ID = "sensor_id"
8 
9 DEFAULT_SCAN_INTERVAL = timedelta(minutes=10)
10 
11 DOMAIN = "luftdaten"