Coverage for src / bluetooth_sig / gatt / services / microphone_control.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"""MicrophoneControl Service implementation."""
3from __future__ import annotations
5from typing import ClassVar
7from ..characteristics.registry import CharacteristicName
8from .base import BaseGattService
11class MicrophoneControlService(BaseGattService):
12 """Microphone Control Service implementation (0x184D).
14 Controls microphone mute state for LE Audio devices.
15 """
17 service_characteristics: ClassVar[dict[CharacteristicName, bool]] = {
18 CharacteristicName.MUTE: True,
19 }