mirror of https://github.com/home-assistant/core
31 lines
676 B
Python
31 lines
676 B
Python
"""Constants for the LaMetric integration."""
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
from typing import Final
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN: Final = "lametric"
|
|
PLATFORMS = [
|
|
Platform.BUTTON,
|
|
Platform.NUMBER,
|
|
Platform.SELECT,
|
|
Platform.SENSOR,
|
|
Platform.SWITCH,
|
|
]
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
SCAN_INTERVAL = timedelta(seconds=30)
|
|
|
|
CONF_CYCLES: Final = "cycles"
|
|
CONF_DATA: Final = "data"
|
|
CONF_ICON_TYPE: Final = "icon_type"
|
|
CONF_LIFETIME: Final = "lifetime"
|
|
CONF_MESSAGE: Final = "message"
|
|
CONF_PRIORITY: Final = "priority"
|
|
CONF_SOUND: Final = "sound"
|
|
|
|
SERVICE_MESSAGE: Final = "message"
|
|
SERVICE_CHART: Final = "chart"
|