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

5 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-04-03 16:41 +0000

1"""Playback Speed characteristic (0x2B9A).""" 

2 

3from __future__ import annotations 

4 

5from .base import BaseCharacteristic 

6from .templates import Sint8Template 

7 

8 

9class PlaybackSpeedCharacteristic(BaseCharacteristic[int]): 

10 """Playback Speed characteristic (0x2B9A). 

11 

12 org.bluetooth.characteristic.playback_speed 

13 

14 Signed 8-bit playback speed factor. 

15 """ 

16 

17 _template = Sint8Template()