Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Component for the Somfy MyLink device supporting the Synergy API."""
2 
3 from homeassistant.const import Platform
4 
5 CONF_SYSTEM_ID = "system_id"
6 CONF_REVERSE = "reverse"
7 CONF_TARGET_NAME = "target_name"
8 CONF_REVERSED_TARGET_IDS = "reversed_target_ids"
9 CONF_TARGET_ID = "target_id"
10 
11 DEFAULT_PORT = 44100
12 
13 DATA_SOMFY_MYLINK = "somfy_mylink_data"
14 MYLINK_STATUS = "mylink_status"
15 DOMAIN = "somfy_mylink"
16 
17 PLATFORMS = [Platform.COVER]
18 
19 MANUFACTURER = "Somfy"