Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """The history_stats component constants."""
2 
3 from homeassistant.const import Platform
4 
5 DOMAIN = "history_stats"
6 PLATFORMS = [Platform.SENSOR]
7 
8 CONF_START = "start"
9 CONF_END = "end"
10 CONF_DURATION = "duration"
11 CONF_PERIOD_KEYS = [CONF_START, CONF_END, CONF_DURATION]
12 
13 CONF_TYPE_TIME = "time"
14 CONF_TYPE_RATIO = "ratio"
15 CONF_TYPE_COUNT = "count"
16 CONF_TYPE_KEYS = [CONF_TYPE_TIME, CONF_TYPE_RATIO, CONF_TYPE_COUNT]
17 
18 DEFAULT_NAME = "unnamed statistics"