Files
hdpv_ble/custom_components/hunterdouglas_powerview_ble/const.py
patman15 a007861a4c Initial commit
Basic functionality could work (untested!)
2024-07-04 11:44:36 +02:00

22 lines
464 B
Python

"""Constants for the BLE Battery Management System integration."""
import logging
# from homeassistant.const import ( # noqa: F401
# ATTR_BATTERY_CHARGING,
# ATTR_BATTERY_LEVEL,
# ATTR_TEMPERATURE,
# ATTR_VOLTAGE,
# )
DOMAIN = "hunterdouglas_powerview_ble"
LOGGER = logging.getLogger(__package__)
UPDATE_INTERVAL = 30 # in seconds
UUID = "0000fdc1-0000-1000-8000-00805f9b34fb"
MFCT_ID = 2073
# attributes (do not change)
ATTR_RSSI = "rssi"