mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 19:27:51 +00:00
11 lines
247 B
Python
11 lines
247 B
Python
"""Constants for the Bluetooth Tracker component."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "bluetooth_tracker"
|
|
SERVICE_UPDATE: Final = "update"
|
|
|
|
BT_PREFIX: Final = "BT_"
|
|
CONF_REQUEST_RSSI: Final = "request_rssi"
|
|
DEFAULT_DEVICE_ID: Final = -1
|