Coverage for src / bluetooth_sig / gatt / characteristics / scan_refresh.py: 100%
7 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-18 11:17 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-18 11:17 +0000
1"""Scan Refresh characteristic implementation."""
3from __future__ import annotations
5from ...types.gatt_enums import CharacteristicRole
6from .base import BaseCharacteristic
7from .templates import Uint8Template
10class ScanRefreshCharacteristic(BaseCharacteristic[int]):
11 """Scan Refresh characteristic (0x2A31).
13 org.bluetooth.characteristic.scan_refresh
15 Requests the server to refresh the scan.
16 """
18 _manual_role = CharacteristicRole.STATUS
20 _template = Uint8Template()