first commit!

This commit is contained in:
Kavish Devar
2024-09-27 02:44:40 +05:30
parent f8db72e5b8
commit a987bb387f
11 changed files with 398 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
class NoiseCancellation:
Off = b"\x01"
On = b"\x02"
Transparency = b"\x03"
Adaptive = b"\x04"
class ConversationAwareness:
Off = b"\x02"
On = b"\x01"
class Capabilites:
NOISE_CANCELLATION = b"\x0d"
CONVERSATION_AWARENESS = b"\x28"
CUSTOMIZABLE_ADAPTIVE_TRANSPARENCY = b"\x01\x02"
EAR_DETECTION = b"\x06"
NoiseCancellation = NoiseCancellation
ConversationAwareness = ConversationAwareness