1
mirror of https://github.com/home-assistant/core synced 2024-08-28 03:36:46 +02:00
ha-core/homeassistant/components/somfy_mylink/const.py
2021-12-04 13:43:48 +01:00

19 lines
452 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"