10 lines
169 B
Python
10 lines
169 B
Python
|
"""Constants for the Threshold integration."""
|
||
|
|
||
|
DOMAIN = "threshold"
|
||
|
|
||
|
CONF_HYSTERESIS = "hysteresis"
|
||
|
CONF_LOWER = "lower"
|
||
|
CONF_UPPER = "upper"
|
||
|
|
||
|
DEFAULT_HYSTERESIS = 0.0
|