mirror of
https://github.com/home-assistant/core.git
synced 2025-05-10 08:59:18 +00:00

* Move trend constants to const.py * Migrate to async_setup_platform * Fix test * Reorder attrs
15 lines
386 B
Python
15 lines
386 B
Python
"""Constant values for Trend integration."""
|
|
DOMAIN = "trend"
|
|
|
|
ATTR_ATTRIBUTE = "attribute"
|
|
ATTR_GRADIENT = "gradient"
|
|
ATTR_INVERT = "invert"
|
|
ATTR_MIN_GRADIENT = "min_gradient"
|
|
ATTR_SAMPLE_DURATION = "sample_duration"
|
|
ATTR_SAMPLE_COUNT = "sample_count"
|
|
|
|
CONF_INVERT = "invert"
|
|
CONF_MAX_SAMPLES = "max_samples"
|
|
CONF_MIN_GRADIENT = "min_gradient"
|
|
CONF_SAMPLE_DURATION = "sample_duration"
|