Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constant values for Trend integration."""
2 
3 DOMAIN = "trend"
4 
5 ATTR_ATTRIBUTE = "attribute"
6 ATTR_GRADIENT = "gradient"
7 ATTR_INVERT = "invert"
8 ATTR_MIN_GRADIENT = "min_gradient"
9 ATTR_SAMPLE_DURATION = "sample_duration"
10 ATTR_SAMPLE_COUNT = "sample_count"
11 
12 CONF_INVERT = "invert"
13 CONF_MAX_SAMPLES = "max_samples"
14 CONF_MIN_GRADIENT = "min_gradient"
15 CONF_SAMPLE_DURATION = "sample_duration"
16 CONF_MIN_SAMPLES = "min_samples"
17 
18 DEFAULT_MAX_SAMPLES = 2
19 DEFAULT_MIN_SAMPLES = 2
20 DEFAULT_MIN_GRADIENT = 0.0
21 DEFAULT_SAMPLE_DURATION = 0