Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Bluetooth Tracker component."""
2 
3 from typing import Final
4 
5 DOMAIN: Final = "bluetooth_tracker"
6 SERVICE_UPDATE: Final = "update"
7 
8 BT_PREFIX: Final = "BT_"
9 CONF_REQUEST_RSSI: Final = "request_rssi"
10 DEFAULT_DEVICE_ID: Final = -1