Coverage for src / bluetooth_sig / gatt / services / mesh_proxy_solicitation.py: 100%
6 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"""MeshProxySolicitation Service implementation."""
3from __future__ import annotations
5from typing import ClassVar
7from ..characteristics.registry import CharacteristicName
8from .base import BaseGattService
11class MeshProxySolicitationService(BaseGattService):
12 """Mesh Proxy Solicitation Service implementation (0x1859).
14 Enables solicitation of Mesh Proxy nodes to establish GATT
15 connections for mesh communication.
16 """
18 service_characteristics: ClassVar[dict[CharacteristicName, bool]] = {}