core/homeassistant/components/sma/const.py

19 lines
376 B
Python
Raw Normal View History

"""Constants for the sma integration."""
2021-12-04 12:43:48 +00:00
from homeassistant.const import Platform
DOMAIN = "sma"
PYSMA_COORDINATOR = "coordinator"
PYSMA_OBJECT = "pysma"
PYSMA_REMOVE_LISTENER = "remove_listener"
PYSMA_SENSORS = "pysma_sensors"
PYSMA_DEVICE_INFO = "device_info"
2021-12-04 12:43:48 +00:00
PLATFORMS = [Platform.SENSOR]
CONF_GROUP = "group"
DEFAULT_SCAN_INTERVAL = 5
GROUPS = ["user", "installer"]