mirror of
https://github.com/home-assistant/core.git
synced 2025-06-03 12:47:06 +00:00
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}
|