12 lines
299 B
Python
12 lines
299 B
Python
"""Constants for the Bluetooth integration."""
|
|
|
|
DOMAIN = "bluetooth"
|
|
DEFAULT_NAME = "Bluetooth"
|
|
|
|
CONF_ADAPTER = "adapter"
|
|
|
|
MACOS_DEFAULT_BLUETOOTH_ADAPTER = "CoreBluetooth"
|
|
UNIX_DEFAULT_BLUETOOTH_ADAPTER = "hci0"
|
|
|
|
DEFAULT_ADAPTERS = {MACOS_DEFAULT_BLUETOOTH_ADAPTER, UNIX_DEFAULT_BLUETOOTH_ADAPTER}
|