2022-07-08 23:55:31 +00:00
|
|
|
"""Constants for the Bluetooth integration."""
|
|
|
|
|
|
|
|
DOMAIN = "bluetooth"
|
2022-07-22 18:19:53 +00:00
|
|
|
DEFAULT_NAME = "Bluetooth"
|
2022-07-25 14:52:35 +00:00
|
|
|
|
|
|
|
CONF_ADAPTER = "adapter"
|
|
|
|
|
|
|
|
MACOS_DEFAULT_BLUETOOTH_ADAPTER = "CoreBluetooth"
|
|
|
|
UNIX_DEFAULT_BLUETOOTH_ADAPTER = "hci0"
|
|
|
|
|
|
|
|
DEFAULT_ADAPTERS = {MACOS_DEFAULT_BLUETOOTH_ADAPTER, UNIX_DEFAULT_BLUETOOTH_ADAPTER}
|