mirror of https://github.com/home-assistant/core
19 lines
407 B
Python
19 lines
407 B
Python
"""Constants for the Goodwe component."""
|
|
|
|
from datetime import timedelta
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "goodwe"
|
|
|
|
PLATFORMS = [Platform.BUTTON, Platform.NUMBER, Platform.SELECT, Platform.SENSOR]
|
|
|
|
DEFAULT_NAME = "GoodWe"
|
|
SCAN_INTERVAL = timedelta(seconds=10)
|
|
|
|
CONF_MODEL_FAMILY = "model_family"
|
|
|
|
KEY_INVERTER = "inverter"
|
|
KEY_COORDINATOR = "coordinator"
|
|
KEY_DEVICE_INFO = "device_info"
|