Coverage for src/bluetooth_sig/gatt/characteristics/seeking_speed.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"""Seeking Speed characteristic (0x2B9B)."""
3from __future__ import annotations
5from .base import BaseCharacteristic
6from .templates import Sint8Template
9class SeekingSpeedCharacteristic(BaseCharacteristic[int]):
10 """Seeking Speed characteristic (0x2B9B).
12 org.bluetooth.characteristic.seeking_speed
14 Signed 8-bit seeking speed factor.
15 """
17 _template = Sint8Template()