mirror of
https://github.com/kavishdevar/librepods.git
synced 2026-02-01 07:39:11 +00:00
17 lines
437 B
Python
17 lines
437 B
Python
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 |