Coverage for src / bluetooth_sig / gatt / characteristics / caloric_intake.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"""Caloric Intake characteristic (0x2B45)."""
3from __future__ import annotations
5from .base import BaseCharacteristic
6from .templates import Uint16Template
9class CaloricIntakeCharacteristic(BaseCharacteristic[int]):
10 """Caloric Intake characteristic (0x2B45).
12 org.bluetooth.characteristic.caloric_intake
14 Caloric Intake characteristic.
15 """
17 _template = Uint16Template()