mirror of
https://github.com/home-assistant/core.git
synced 2026-02-06 15:25:33 +01:00
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
|