2022-01-04 21:19:31 +00:00
|
|
|
"""Constants for the Goodwe component."""
|
|
|
|
from datetime import timedelta
|
|
|
|
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
|
|
|
|
DOMAIN = "goodwe"
|
|
|
|
|
2022-08-25 05:52:05 +00:00
|
|
|
PLATFORMS = [Platform.BUTTON, Platform.NUMBER, Platform.SELECT, Platform.SENSOR]
|
2022-01-04 21:19:31 +00:00
|
|
|
|
|
|
|
DEFAULT_NAME = "GoodWe"
|
|
|
|
SCAN_INTERVAL = timedelta(seconds=10)
|
|
|
|
|
|
|
|
CONF_MODEL_FAMILY = "model_family"
|
|
|
|
|
|
|
|
KEY_INVERTER = "inverter"
|
|
|
|
KEY_COORDINATOR = "coordinator"
|
|
|
|
KEY_DEVICE_INFO = "device_info"
|