Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Goodwe component."""
2 
3 from datetime import timedelta
4 
5 from homeassistant.const import Platform
6 
7 DOMAIN = "goodwe"
8 
9 PLATFORMS = [Platform.BUTTON, Platform.NUMBER, Platform.SELECT, Platform.SENSOR]
10 
11 DEFAULT_NAME = "GoodWe"
12 SCAN_INTERVAL = timedelta(seconds=10)
13 
14 CONF_MODEL_FAMILY = "model_family"
15 
16 KEY_INVERTER = "inverter"
17 KEY_COORDINATOR = "coordinator"
18 KEY_DEVICE_INFO = "device_info"