Coverage for src/bluetooth_sig/gatt/services/mesh_provisioning.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"""MeshProvisioning Service implementation."""
3from __future__ import annotations
5from typing import ClassVar
7from ..characteristics.registry import CharacteristicName
8from .base import BaseGattService
11class MeshProvisioningService(BaseGattService):
12 """Mesh Provisioning Service implementation (0x1827).
14 Provides the provisioning interface for adding devices to a
15 Bluetooth Mesh network.
16 """
18 service_characteristics: ClassVar[dict[CharacteristicName, bool]] = {
19 CharacteristicName.MESH_PROVISIONING_DATA_IN: True,
20 CharacteristicName.MESH_PROVISIONING_DATA_OUT: True,
21 }