Coverage for src / bluetooth_sig / gatt / characteristics / bearer_signal_strength_reporting_interval.py: 100%
5 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-03 16:41 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-03 16:41 +0000
1"""Bearer Signal Strength Reporting Interval characteristic (0x2BB8)."""
3from __future__ import annotations
5from .base import BaseCharacteristic
6from .templates import Uint8Template
9class BearerSignalStrengthReportingIntervalCharacteristic(BaseCharacteristic[int]):
10 """Bearer Signal Strength Reporting Interval characteristic (0x2BB8).
12 org.bluetooth.characteristic.bearer_signal_strength_reporting_interval
14 Reporting interval for signal strength, as an unsigned 8-bit integer (seconds).
15 """
17 _template = Uint8Template()