Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Compensation constants."""
2 
3 DOMAIN = "compensation"
4 
5 SENSOR = "compensation"
6 
7 CONF_COMPENSATION = "compensation"
8 CONF_LOWER_LIMIT = "lower_limit"
9 CONF_UPPER_LIMIT = "upper_limit"
10 CONF_DATAPOINTS = "data_points"
11 CONF_DEGREE = "degree"
12 CONF_PRECISION = "precision"
13 CONF_POLYNOMIAL = "polynomial"
14 
15 DATA_COMPENSATION = "compensation_data"
16 
17 DEFAULT_DEGREE = 1
18 DEFAULT_NAME = "Compensation"
19 DEFAULT_PRECISION = 2