mirror of
https://github.com/kavishdevar/librepods.git
synced 2026-04-24 07:08:12 +00:00
first commit!
This commit is contained in:
17
aln/Capabilites/__init__.py
Normal file
17
aln/Capabilites/__init__.py
Normal 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
|
||||
Reference in New Issue
Block a user