17 lines
449 B
Python
17 lines
449 B
Python
|
"""Constants for the Motionblinds BLE integration."""
|
||
|
|
||
|
CONF_LOCAL_NAME = "local_name"
|
||
|
CONF_MAC_CODE = "mac_code"
|
||
|
CONF_BLIND_TYPE = "blind_type"
|
||
|
|
||
|
DOMAIN = "motionblinds_ble"
|
||
|
|
||
|
ERROR_COULD_NOT_FIND_MOTOR = "could_not_find_motor"
|
||
|
ERROR_INVALID_MAC_CODE = "invalid_mac_code"
|
||
|
ERROR_NO_BLUETOOTH_ADAPTER = "no_bluetooth_adapter"
|
||
|
ERROR_NO_DEVICES_FOUND = "no_devices_found"
|
||
|
|
||
|
ICON_VERTICAL_BLIND = "mdi:blinds-vertical-closed"
|
||
|
|
||
|
MANUFACTURER = "Motionblinds"
|