hass-core/homeassistant/components/motion_blinds/const.py
starkillerOG a22d9e54db
Improve TDBU motion blinds control (#44500)
* improve TDBU motion blinds control

* Simplify service registration
2020-12-28 13:09:53 -08:00

15 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"