28 lines
698 B
Python
28 lines
698 B
Python
"""Constants for the BLE Battery Management System integration."""
|
|
|
|
import logging
|
|
from typing import Final
|
|
|
|
# from bleak.uuids import normalize_uuid_str
|
|
|
|
# from homeassistant.const import ( # noqa: F401
|
|
# ATTR_BATTERY_CHARGING,
|
|
# ATTR_BATTERY_LEVEL,
|
|
# ATTR_TEMPERATURE,
|
|
# ATTR_VOLTAGE,
|
|
# )
|
|
|
|
|
|
DOMAIN: Final[str] = "hunterdouglas_powerview_ble"
|
|
LOGGER: Final = logging.getLogger(__package__)
|
|
MFCT_ID: Final[int] = 2073
|
|
TIMEOUT: Final[int] = 5
|
|
|
|
# put the key here, needs to be 16 bytes long, e.g.
|
|
# HOME_KEY: Final[bytes] = b"\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
|
|
HOME_KEY: Final[bytes] = b""
|
|
|
|
|
|
# attributes (do not change)
|
|
ATTR_RSSI: Final[str] = "rssi"
|