Coverage for src / bluetooth_sig / gatt / characteristics / content_control_id.py: 100%

7 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-03-18 11:17 +0000

1"""Content Control ID characteristic (0x2BBA).""" 

2 

3from __future__ import annotations 

4 

5from ...types.gatt_enums import CharacteristicRole 

6from .base import BaseCharacteristic 

7from .templates import Uint8Template 

8 

9 

10class ContentControlIdCharacteristic(BaseCharacteristic[int]): 

11 """Content Control ID characteristic (0x2BBA). 

12 

13 org.bluetooth.characteristic.content_control_id 

14 

15 The ID of the content control service instance. 

16 """ 

17 

18 _manual_role = CharacteristicRole.STATUS 

19 _template = Uint8Template()