16 lines
434 B
Python
16 lines
434 B
Python
"""Constants for the Motion Blinds component."""
|
|
DOMAIN = "motion_blinds"
|
|
MANUFACTURER = "Motion Blinds, Coulisse B.V."
|
|
DEFAULT_GATEWAY_NAME = "Motion Blinds Gateway"
|
|
|
|
MOTION_PLATFORMS = ["cover", "sensor"]
|
|
|
|
KEY_GATEWAY = "gateway"
|
|
KEY_COORDINATOR = "coordinator"
|
|
KEY_MULTICAST_LISTENER = "multicast_listener"
|
|
|
|
ATTR_WIDTH = "width"
|
|
ATTR_ABSOLUTE_POSITION = "absolute_position"
|
|
|
|
SERVICE_SET_ABSOLUTE_POSITION = "set_absolute_position"
|