Coverage for src/bluetooth_sig/gatt/services/internet_protocol_support.py: 100%
6 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"""InternetProtocolSupport Service implementation."""
3from __future__ import annotations
5from typing import ClassVar
7from ..characteristics.registry import CharacteristicName
8from .base import BaseGattService
11class InternetProtocolSupportService(BaseGattService):
12 """Internet Protocol Support Service implementation (0x1820).
14 Enables IPv6 communication over Bluetooth Low Energy (IPSP).
15 """
17 service_characteristics: ClassVar[dict[CharacteristicName, bool]] = {}