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