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

5 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-11 20:14 +0000

1"""Count 16 characteristic implementation.""" 

2 

3from __future__ import annotations 

4 

5from .base import BaseCharacteristic 

6from .templates import Uint16Template 

7 

8 

9class Count16Characteristic(BaseCharacteristic[int]): 

10 """Count 16 characteristic (0x2AEA). 

11 

12 org.bluetooth.characteristic.count_16 

13 

14 Represents a count value using 16-bit unsigned integer. 

15 """ 

16 

17 _template = Uint16Template()