mirror of
https://github.com/home-assistant/core.git
synced 2026-04-17 15:44:52 +01:00
22 lines
544 B
Python
22 lines
544 B
Python
"""The history_stats component constants."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "history_stats"
|
|
PLATFORMS = [Platform.SENSOR]
|
|
|
|
CONF_START = "start"
|
|
CONF_END = "end"
|
|
CONF_DURATION = "duration"
|
|
CONF_MIN_STATE_DURATION = "min_state_duration"
|
|
CONF_PERIOD_KEYS = [CONF_START, CONF_END, CONF_DURATION]
|
|
|
|
CONF_TYPE_TIME = "time"
|
|
CONF_TYPE_RATIO = "ratio"
|
|
CONF_TYPE_COUNT = "count"
|
|
CONF_TYPE_KEYS = [CONF_TYPE_TIME, CONF_TYPE_RATIO, CONF_TYPE_COUNT]
|
|
|
|
DEFAULT_NAME = "unnamed statistics"
|
|
|
|
SECTION_ADVANCED_SETTINGS = "advanced_settings"
|