Coverage for src / bluetooth_sig / gatt / characteristics / age.py: 100%
5 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-11 20:14 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-11 20:14 +0000
1"""Age characteristic (0x2A80)."""
3from __future__ import annotations
5from bluetooth_sig.gatt.characteristics.templates import Uint8Template
7from .base import BaseCharacteristic
10class AgeCharacteristic(BaseCharacteristic[int]):
11 """Age characteristic (0x2A80).
13 org.bluetooth.characteristic.age
15 Age characteristic.
16 """
18 _template = Uint8Template()