Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Define constants for the Sun WEG component."""
2 
3 from enum import Enum
4 
5 from homeassistant.const import Platform
6 
7 
8 class DeviceType(Enum):
9  """Device Type Enum."""
10 
11  TOTAL = 1
12  INVERTER = 2
13  PHASE = 3
14  STRING = 4
15 
16 
17 CONF_PLANT_ID = "plant_id"
18 
19 DEFAULT_PLANT_ID = 0
20 
21 DEFAULT_NAME = "Sun WEG"
22 
23 DOMAIN = "sunweg"
24 
25 PLATFORMS = [Platform.SENSOR]