From 63819bf9dd17853df6f3311ca1fd63211ed5a85a Mon Sep 17 00:00:00 2001 From: Wojciech Pietraszewski Date: Thu, 21 Nov 2024 16:40:49 +0100 Subject: [PATCH] Amend Opcode value in `Audio Input Control Service` Corrects the Audio Input Control Point Opcode value for `Set Gain Setting` field. --- bumble/profiles/aics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumble/profiles/aics.py b/bumble/profiles/aics.py index 3a696272..2636a4f6 100644 --- a/bumble/profiles/aics.py +++ b/bumble/profiles/aics.py @@ -104,7 +104,7 @@ class AudioInputControlPointOpCode(OpenIntEnum): Cf. 3.5.1 Audio Input Control Point procedure requirements ''' - SET_GAIN_SETTING = 0x00 + SET_GAIN_SETTING = 0x01 UNMUTE = 0x02 MUTE = 0x03 SET_MANUAL_GAIN_MODE = 0x04