1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-29 13:13:46 +01:00
Files
core/homeassistant/components/somfy_mylink/const.py
2024-03-08 14:33:51 +01:00

20 lines
453 B
Python

"""Component for the Somfy MyLink device supporting the Synergy API."""
from homeassistant.const import Platform
CONF_SYSTEM_ID = "system_id"
CONF_REVERSE = "reverse"
CONF_TARGET_NAME = "target_name"
CONF_REVERSED_TARGET_IDS = "reversed_target_ids"
CONF_TARGET_ID = "target_id"
DEFAULT_PORT = 44100
DATA_SOMFY_MYLINK = "somfy_mylink_data"
MYLINK_STATUS = "mylink_status"
DOMAIN = "somfy_mylink"
PLATFORMS = [Platform.COVER]
MANUFACTURER = "Somfy"