Coverage for src / bluetooth_sig / gatt / services / reconnection_configuration.py: 100%
6 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-03 16:41 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-03 16:41 +0000
1"""ReconnectionConfiguration Service implementation."""
3from __future__ import annotations
5from typing import ClassVar
7from ..characteristics.registry import CharacteristicName
8from .base import BaseGattService
11class ReconnectionConfigurationService(BaseGattService):
12 """Reconnection Configuration Service implementation (0x1829).
14 Allows a client to configure reconnection parameters on a
15 peripheral device.
16 """
18 service_characteristics: ClassVar[dict[CharacteristicName, bool]] = {
19 CharacteristicName.RC_FEATURE: True,
20 CharacteristicName.RC_SETTINGS: False,
21 CharacteristicName.RECONNECTION_CONFIGURATION_CONTROL_POINT: False,
22 }