Coverage for src/bluetooth_sig/gatt/characteristics/coordinated_set_size.py: 100%
5 statements
« prev ^ index » next coverage.py v7.14.3, created at 2026-06-28 01:26 +0000
« prev ^ index » next coverage.py v7.14.3, created at 2026-06-28 01:26 +0000
1"""Coordinated Set Size characteristic (0x2B85)."""
3from __future__ import annotations
5from .base import BaseCharacteristic
6from .templates import Uint8Template
9class CoordinatedSetSizeCharacteristic(BaseCharacteristic[int]):
10 """Coordinated Set Size characteristic (0x2B85).
12 org.bluetooth.characteristic.size_characteristic
14 The number of members in the coordinated set.
15 """
17 _template = Uint8Template()