mirror of
https://github.com/home-assistant/core.git
synced 2026-09-09 23:21:00 +01:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
13 lines
372 B
Python
13 lines
372 B
Python
"""Constants for the ISEO Argo BLE Lock integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "iseo_argo_ble"
|
|
PLATFORMS: list[Platform] = [Platform.LOCK]
|
|
|
|
# Config entry keys (CONF_ADDRESS and CONF_UUID come from homeassistant.const)
|
|
CONF_PRIV_SCALAR = "priv_scalar"
|
|
|
|
# Default user subtype (gateway)
|
|
DEFAULT_USER_SUBTYPE: int = 17 # UserSubType.BT_GATEWAY
|