1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
|
#!/usr/bin/env python3
# ctbtw -- a small program to control BT-W* Bluetooth audio devices
# Tested mostly on CT BT-W6
# Copyright (C) 2025 Javier S. Pedro
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
from enum import Enum, Flag
from typing import NamedTuple
from argparse import ArgumentParser
import struct
import hid
import sys, os
class Commands(int, Enum):
Ack = 2
DevInfo = 7
BTCommand = 0x6B
class BTState(int, Enum):
Initializing = 0
PoweredOff = 1
TestMode = 2
Idle = 3
Connectable = 4
Discoverable = 5
Connecting = 6
Inquiring = 7
Connected = 8
Paging = 9
Disconnected = 10
A2DPMode = 11
HFPMode = 12
PagingFailed = 13
LEAudioUnicast = 14
LEAudioUnicastWithVoiceChat = 15
PublicAuracast = 16
PrivateAuracast = 17
class BTDualMode(int, Flag):
Classic = 0
LEAudio = 2
class BTAudioMode(int, Flag):
A2DP_HFP = 1 # "Enable Mic Input"
A2DP = 2 # "Disable Mic Input"
PublicAuracast = 8
PrivateAuracast = 0x10
class BTProfile(int, Flag):
SBC = 1
HFP = 2
A2DP = 4
AVRCP = 8
LEAudio = 0x4000
class BTCodec(int, Flag):
SBC = 1
Faststream = 2
aptXClassic = 4
aptXLowLatency = 8
aptXHD = 0x10
aptXAdaptiveLowLatency = 0x20
aptXAdaptiveHighQuality = 0x40
aptXLossless = 0x80
aptXLite = 0x100
LC3 = 0x200
class BTAddr:
def __init__(self, value=None):
if isinstance(value, str):
if value.count(":") != 5:
raise ValueError("BTAddr must be xx:xx:xx:xx:xx:xx string")
self.bytes = bytes.fromhex(value.replace(":", " "))
elif isinstance(value, bytes):
if len(value) != 6:
raise ValueError("BTAddr must be 6 bytes")
self.bytes = bytes(value[4:6] + value[0:2] + value[2:4])
elif value is None:
self.bytes = bytes()
else:
raise TypeError("do know how to cast %r into BTAddr"%value)
@staticmethod
def unpack(data):
self = BTAddr()
# TODO Likely something wrong here
assert len(data) == 6
self.bytes = bytes(data[4:6] + data[0:2] + data[2:4])
return self
def pack(self):
return bytes(self.bytes[2:4] + self.bytes[4:6] + self.bytes[0:2])
def __repr__(self):
return "BTAddr('%s')"%self.bytes.hex(sep=':')
def __str__(self):
return self.bytes.hex(sep=':')
def __bytes__(self):
return self.pack()
class BTOperation(int, Enum):
GetNumPairedDevices = 1
GetPairedDeviceDetails = 2
SetConnectionAction = 3
SetInquiryMode = 4
GetInquiryData = 5
GetState = 6
ForgetDevice = 7
SetDeviceFriendlyName = 8
GetFeature = 9
SetFeature = 10
StopInquiryMode = 11
class BTFeatureGet(int, Enum):
"""Enum with types of feature bytes that can be read from device, and their datatype"""
def __new__(cls, value, valuetype):
obj = int.__new__(cls, value)
obj._value_ = value
obj.valuetype = valuetype
return obj
AutoReconnect = 0, bool
MaxPairedDeviceSupported = 1, int
A2DPCodecSupported = 2, BTCodec
A2DPCodecCurrent = 3, BTCodec
LocalBluetoothAddress = 4, BTAddr
SupportedDeviceAudioMode = 5, BTAudioMode
CurrentDeviceAudioMode = 6, BTAudioMode
AutoMicActivation = 7, bool
PreferredAptXCodecVariant = 8, BTCodec
AuracastName = 9, str
AuracastCode = 10, str
ExtendedCodecsSupported = 11, BTCodec
ExtendedCurrentCodec = 12, BTCodec
PreferredDualMode = 13, BTDualMode
ConnectedDeviceSupportedBTProfile = 14, BTProfile
GamingModeState = 15, bool
BroadcastEncryptedState = 16, bool
class BTFeatureSet(int, Enum):
"""Enum with types of feature bytes that be sent to the device, and their datatype"""
def __new__(cls, value, valuetype):
obj = int.__new__(cls, value)
obj._value_ = value
obj.valuetype = valuetype
return obj
AutoReconnect = 0, bool
CurrentDeviceAudioMode = 1, BTAudioMode
AutoMicActivation = 2, bool
PreferredAptXCodecVariant = 3, BTCodec
AuracastName = 4, str
AuracastCode = 5, str
PreferredDualMode = 6, BTDualMode
GamingMode = 7, bool
BroadcastEncryptedState = 8, bool
class BTConnectionAction(int, Enum):
Connect = 0
Disconnect = 1
class BTInquiryAction(int, Enum):
InquiryWithPair = 0
InquiryGetSinksOnly = 1
InquiryPairSpecificSink = 2
class Msg:
"""Base class for messages."""
prefixId = None
commandId = None
@classmethod
def is_mine(cls, data):
"""Called by message receiver. Should return true if passed data corresponds to a message of this class type."""
assert cls.prefixId
assert cls.commandId
return data[0] == cls.prefixId and data[1] == cls.commandId.value
class AckMsg(Msg):
prefixId = 0x5a # TODO Unclear what this prefix actually means, so hardcoding it
commandId = Commands.Ack
@classmethod
def unpack(cls, data):
self = cls()
# Ignoring arguments
return self
def __repr__(self):
return "AckMsg()"
class BTMsg(Msg):
"""Base class for all bluetooth-related messages."""
prefixId = 0x5a # TODO
commandId = Commands.BTCommand
operationId = None
@classmethod
def is_mine(cls, data):
assert cls.operationId is not None
return data[0] == cls.prefixId and data[1] == cls.commandId.value and data[3] == cls.operationId.value
class GetNumPairedDevicesMsg(BTMsg):
operationId = BTOperation.GetNumPairedDevices
def __init__(self):
self.value = None
@classmethod
def unpack(cls, data):
self = cls()
prefix, cmd, msglen, op, value = struct.unpack_from("<BBBB B", data)
assert prefix == cls.prefixId
assert cmd == cls.commandId
self.value = value
return self
def pack(self):
raise NotImplementedError
def __repr__(self):
return "GetNumPairedDevicesMsg(value=%s)"%self.value
class GetPairedDeviceDetailsMsg(BTMsg):
operationId = BTOperation.GetPairedDeviceDetails
def __init__(self):
self.index = None
self.valid = False
self.addr = bytes()
self.displayName = str()
@classmethod
def unpack(cls, data):
self = cls()
prefix, cmd, msglen, op, index, valid, addr, displayName = struct.unpack_from("<BBBB BB6s40p", data)
assert prefix == cls.prefixId
assert cmd == cls.commandId
self.index = int(index)
self.valid = bool(valid)
self.addr = BTAddr.unpack(addr)
self.displayName = displayName.rstrip(b'\x00').decode("utf-8")
return self
def pack(self):
raise NotImplementedError
def __repr__(self):
return "GetPairedDeviceDetailsMsg(index=%s,valid=%s,addr=%r,displayName=%r)"%(self.index,self.valid,self.addr,self.displayName)
class GetInquiryDataMsg(BTMsg):
operationId = BTOperation.GetInquiryData
def __init__(self):
self.addr = bytes()
self.displayName = str()
@classmethod
def unpack(cls, data):
self = cls()
prefix, cmd, msglen, op, addr, displayName = struct.unpack_from("<BBBB 6s40p", data)
assert prefix == cls.prefixId
assert cmd == cls.commandId
self.addr = BTAddr.unpack(addr)
self.displayName = displayName.rstrip(b'\x00').decode("utf-8")
return self
def pack(self):
raise NotImplementedError
def __repr__(self):
return "GetInquiryDataMsg(addr=%r,displayName=%r)"%(self.addr,self.displayName)
class GetStateMsg(BTMsg):
operationId = BTOperation.GetState
def __init__(self):
self.state = BTState.Initializing
self.addr = bytes()
self.displayName = str()
@classmethod
def unpack(cls, data):
self = cls()
prefix, cmd, msglen, op, state, addr, displayName = struct.unpack_from("<BBBB B6s40p", data)
assert prefix == cls.prefixId
assert cmd == cls.commandId
self.state = BTState(state)
self.addr = BTAddr.unpack(addr)
self.displayName = displayName.rstrip(b'\x00').decode("utf-8")
return self
def pack(self):
raise NotImplementedError
def __repr__(self):
return "GetStateMsg(state=%s,addr=%r,displayName=%r)"%(self.state,self.addr,self.displayName)
class GetFeatureMsg(BTMsg):
operationId = BTOperation.GetFeature
def __init__(self):
self.feature = None
self.value = None
@classmethod
def unpack(cls, data):
self = cls()
prefix, cmd, msglen, op, feature = struct.unpack_from("<BBBB B", data)
assert prefix == cls.prefixId
assert cmd == cls.commandId
offset = struct.calcsize("<BBBB B")
valuelen = msglen - struct.calcsize("<B B")
value = data[offset:offset+valuelen]
self.feature = BTFeatureGet(feature)
valuetype = self.feature.valuetype
if valuetype is bytes or valuetype is str:
# multi-byte value, pascal string
valuelen = value[0]
self.value = bytes(value[1:1+valuelen])
if valuetype is str:
self.value = self.value.decode("utf-8")
elif valuetype is BTAddr:
# multi-byte value fixed length
self.value = valuetype(value[0:6])
else:
# single-byte value
self.value = valuetype(value[0])
return self
def pack(self):
raise NotImplementedError
def __repr__(self):
return "GetFeatureMsg(feature=%s,value=%r)"%(self.feature,self.value)
class BTReq(BTMsg):
pass
class GetNumPairedDevicesReq(BTReq):
operationId = BTOperation.GetNumPairedDevices
def __init__(self):
pass # No arguments
def pack(self):
msglen = struct.calcsize("<B ")
return struct.pack("<BBBB ", self.prefixId, self.commandId, msglen, self.operationId)
def __repr__(self):
return "GetNumPairedDevicesReq()"
class GetPairedDeviceDetailsReq(BTReq):
operationId = BTOperation.GetPairedDeviceDetails
def __init__(self, index = None):
self.index = index
def pack(self):
assert self.index is not None
msglen = struct.calcsize("<B B")
return struct.pack("<BBBB B", self.prefixId, self.commandId, msglen, self.operationId, self.index)
def __repr__(self):
return "GetPairedDeviceDetailsReq(index=%s)"%self.index
class SetConnectionReq(BTReq):
operationId = BTOperation.SetConnectionAction
def __init__(self, action=None, addr=None):
assert action in BTConnectionAction
self.action = action
self.addr = addr
def pack(self):
if self.addr:
msglen = struct.calcsize("<B B6s")
return struct.pack("<BBBB B6s", self.prefixId, self.commandId, msglen, self.operationId, self.action, self.addr.pack())
else:
msglen = struct.calcsize("<B B")
return struct.pack("<BBBB B", self.prefixId, self.commandId, msglen, self.operationId, self.action)
def __repr__(self):
return "SetConnectionReq(action=%s,addr=%s)"%(self.action.name, self.addr)
class SetInquiryModeReq(BTReq):
operationId = BTOperation.SetInquiryMode
def __init__(self, action=None, addr=None):
assert action is None or action in BTInquiryAction
self.action = action
if addr:
assert action == BTInquiryAction.InquiryPairSpecificSink
self.addr = addr
else:
self.addr = None
def pack(self):
if self.addr:
msglen = struct.calcsize("<B B6s")
return struct.pack("<BBBB B6s", self.prefixId, self.commandId, msglen, self.operationId, self.action, self.addr.pack())
else:
msglen = struct.calcsize("<B B")
return struct.pack("<BBBB B", self.prefixId, self.commandId, msglen, self.operationId, self.action)
def __repr__(self):
return "SetInquiryModeReq(action=%s,addr=%s)"%(self.action.name, self.addr)
class StopInquiryModeReq(BTReq):
operationId = BTOperation.StopInquiryMode
def __init__(self):
pass
def pack(self):
msglen = struct.calcsize("<B ")
return struct.pack("<BBBB ", self.prefixId, self.commandId, msglen, self.operationId)
def __repr__(self):
return "StopInquiryMode()"
class GetStateReq(BTReq):
operationId = BTOperation.GetState
def __init__(self):
pass
def pack(self):
msglen = struct.calcsize("<B ")
return struct.pack("<BBBB ", self.prefixId, self.commandId, msglen, self.operationId)
def __repr__(self):
return "GetStateReq()"
class ForgetDeviceReq(BTReq):
operationId = BTOperation.ForgetDevice
def __init__(self, index = None):
# -1 may also mean "all"
self.index = index
def pack(self):
msglen = struct.calcsize("<B B")
return struct.pack("<BBBB B", self.prefixId, self.commandId, msglen, self.operationId, self.index)
def __repr__(self):
return "ForgetDeviceReq(index=%s)"%self.index
class GetFeatureReq(BTReq):
operationId = BTOperation.GetFeature
def __init__(self, feature):
assert feature in BTFeatureGet
self.feature = feature
def pack(self):
msglen = struct.calcsize("<B B")
return struct.pack("<BBBB B", self.prefixId, self.commandId, msglen, self.operationId, self.feature.value)
def __repr__(self):
return "GetFeatureReq(feature=%s)"%(self.feature)
class SetFeatureReq(BTReq):
operationId = BTOperation.SetFeature
def __init__(self, feature, value):
assert feature in BTFeatureSet
self.feature = feature
self.value = feature.valuetype(value)
def pack(self):
valuetype = self.feature.valuetype
if valuetype is str:
# Prefix with length
value = struct.pack("<40p", self.value.encode("utf-8"))
elif valuetype is BTAddr:
value = struct.pack("<6B", self.value)
else:
value = struct.pack("<B", self.value)
msglen = struct.calcsize("<B B") + len(value)
return struct.pack("<BBBB B", self.prefixId, self.commandId, msglen, self.operationId, self.feature.value) + value
def __repr__(self):
return "SetFeatureReq(feature=%s,value=%r)"%(self.feature,self.value)
class PairedDevice(NamedTuple):
"""Tuple representing a paired bluetooth receiver."""
name: str
addr: BTAddr
class CTBTWDevice:
"""Main class representing a transmitter device."""
# List of messages that can be received
MSG_TYPES = [AckMsg, GetNumPairedDevicesMsg, GetPairedDeviceDetailsMsg, GetInquiryDataMsg, GetStateMsg, GetFeatureMsg]
# HID report number used to both receive/send messages
REPORT_ID = 3
# Size of this report (hardcoded...)
REPORT_SIZE = 64
# This is the usage page for the above report_id, at least on BT-W6. Some platforms need this to be correct.
USAGE_PAGE = 0xFF01
# Vendor ID to search for
VENDOR_ID = 0x041e
# Product IDs to search for. Hardcoded to [BT-W4, BT-W5, BT-W6]
PRODUCT_IDS = [0x312B, 0x3130, 0x3132]
def __init__(self, devpath, verbose=False):
self._hid = hid.device()
self._hid.open_path(devpath)
self._verbose = verbose
def parse_msg(self, data):
assert len(data) == self.REPORT_SIZE
for msg in self.MSG_TYPES:
if msg.is_mine(data):
return msg.unpack(data)
return None
def send_msg(self, msg):
if self._verbose: print(repr(msg))
data = msg.pack()
assert len(data) <= self.REPORT_SIZE
if len(data) < self.REPORT_SIZE: # pad to report size
data += b"\0" * (self.REPORT_SIZE - len(data))
data = struct.pack("B", self.REPORT_ID) + data
assert len(data) == 1 + self.REPORT_SIZE
if self._verbose: print('> ', data.hex(sep=' '))
self._hid.write(data)
def read_msgs(self, timeout_ms=50):
while True:
data = self._hid.read(1 + self.REPORT_SIZE, timeout_ms=timeout_ms)
if len(data) == 0:
break
if self._verbose: print('< ', bytes(data).hex(sep=' '))
if len(data) == 1 + self.REPORT_SIZE and data[0] == self.REPORT_ID:
msg = dev.parse_msg(bytes(data[1:]))
if msg:
if self._verbose: print(' ', repr(msg))
yield msg
else:
if self._verbose: print(" Unknown message with prefix %x command %x " % (data[1], data[2]))
# Timeout (in msec) to use for short messages
SHORT_TIMEOUT=50
# Timeout (in msec) to use for e.g. connection messages
MID_TIMEOUT=1500
# Timeout (in msec) to use for messages related to pairing
PAIR_TIMEOUT=30000
bt_codec_colors = {
BTCodec.SBC : (0,102,179),
BTCodec.aptXClassic : (139,198,64),
BTCodec.aptXLowLatency : (0,173,239),
BTCodec.aptXHD : (246,148,31),
BTCodec.aptXAdaptiveLowLatency : (0,173,239),
BTCodec.aptXAdaptiveHighQuality : (110,44,145),
BTCodec.aptXLossless : (255,241,0),
BTCodec.aptXLite : (0,173,239),
BTCodec.LC3 : (255,255,255)
}
def colored_dot(color):
colorstr = "\033[38;2;%d;%d;%dm"%color
dot = "●"
reset = "\033[0m"
return colorstr + dot + reset
def codec_name(codec):
global use_color
assert codec in BTCodec
codec_color = bt_codec_colors.get(codec)
if use_color and codec_color:
return colored_dot(codec_color) + " " + codec.name
else:
return codec.name
def find_device():
for device in hid.enumerate(vendor_id=CTBTWDevice.VENDOR_ID):
if (device['vendor_id'] == CTBTWDevice.VENDOR_ID and
device['product_id'] in CTBTWDevice.PRODUCT_IDS and
device['usage_page'] == CTBTWDevice.USAGE_PAGE):
return device
return None
def read_and_explain_msgs(dev: CTBTWDevice, timeout_ms=SHORT_TIMEOUT):
for msg in dev.read_msgs(timeout_ms=timeout_ms):
if isinstance(msg, GetStateMsg):
print("Currently %s to device '%s'" % (msg.state.name, msg.displayName))
elif isinstance(msg, GetFeatureMsg):
if msg.feature == BTFeatureGet.ExtendedCurrentCodec:
print("Currently using codec '%s'" % codec_name(msg.value))
elif msg.feature == BTFeatureGet.ExtendedCodecsSupported:
print("Supported codecs: ", " ".join([codec_name(val) for val in msg.value]))
def get_paired_devices(dev: CTBTWDevice, timeout_ms=SHORT_TIMEOUT):
num_devices = None
msg = GetNumPairedDevicesReq()
dev.send_msg(msg)
for msg in dev.read_msgs(timeout_ms=timeout_ms):
if isinstance(msg, GetNumPairedDevicesMsg):
num_devices = int(msg.value)
break
if num_devices is None:
raise IOError("Could not get number of paired devices")
if num_devices:
# Have to send a GetDeviceDetails msg for every potential index
for dev_index in range(num_devices):
msg = GetPairedDeviceDetailsReq(index=dev_index)
dev.send_msg(msg)
for msg in dev.read_msgs(timeout_ms=SHORT_TIMEOUT):
if isinstance(msg, GetPairedDeviceDetailsMsg):
if msg.valid:
yield PairedDevice(msg.displayName, msg.addr)
break
def get_paired_device_address(dev: CTBTWDevice, dev_name: str, timeout_ms=SHORT_TIMEOUT):
fdev_name = dev_name.casefold()
for paired_dev in get_paired_devices(dev, timeout_ms=timeout_ms):
if paired_dev.name.casefold() == fdev_name:
return paired_dev.addr
return None
def get_currently_connected_device(dev: CTBTWDevice, timeout_ms=SHORT_TIMEOUT):
paired_dev = None
msg = GetStateReq()
dev.send_msg(msg)
for msg in dev.read_msgs(timeout_ms=SHORT_TIMEOUT):
if isinstance(msg, GetStateMsg):
if msg.state in (BTState.Connected, BTState.Connecting):
paired_dev = PairedDevice(msg.displayName, msg.addr)
# Continue through the loop to flush all state messages and avoid spurious ones later one
return paired_dev
if __name__ == '__main__':
parser = ArgumentParser(prog='ctbtw', description="Control CT BT-W* Bluetooth Audio Trasmitter devices", epilog="With no arguments, show current device state")
parser.add_argument('--verbose', '-v', action='store_true', help="print protocol traces")
actions = parser.add_mutually_exclusive_group()
actions.add_argument('--aptxll', '-l', action='store_true', help="for aptX, prefer low-latency mode")
actions.add_argument('--aptxhq', '-q', action='store_true', help="for aptX, prefer high-quality mode (also enables aptX lossless)")
actions.add_argument('--devices', '-s', action='store_true', help="list currently paired devices")
actions.add_argument('--connect', '-c', metavar="DEV", action='store', help="connect to (already paired) device with given name/address")
actions.add_argument('--disconnect', '-d', metavar="D", action='store', nargs='?', const='*', help="disconnect from device with given name/address, or current device if no %(metavar)s")
actions.add_argument('--pair', '-p', nargs='?', metavar="ADDR", const="*", action='store', help='pair with specific bluetooth address, or any device if no %(metavar)s specified')
actions.add_argument('--forget', action='store_true', help='forget all paired devices')
actions.add_argument('--get', action='append', choices=[val.name for val in BTFeatureGet], metavar="SETTING", help="get the current value of a setting from device. valid %(metavar)ss: %(choices)s")
actions.add_argument('--set', nargs=2, action='append', metavar=("SETTING", "VALUE"), help="set a device setting to a VALUE. valid SETTINGs: %s" % ", ".join(val.name for val in BTFeatureSet))
args = parser.parse_args()
verbose = args.verbose
use_color = os.getenv("NO_COLOR", "") == "" and os.getenv("TERM") != "dumb" and sys.stdout.isatty()
if use_color:
try:
from colorama import just_fix_windows_console
just_fix_windows_console()
except Exception:
pass
devinfo = find_device()
if not devinfo:
print("Could not find device with valid vendor/product IDs")
sys.exit(1)
print("Using device '%s' at %s" % (devinfo['product_string'], os.fsdecode(devinfo['path'])))
dev = CTBTWDevice(devinfo['path'], verbose=verbose)
if verbose: print("Opened device '%s'" % devinfo['product_string'])
if args.aptxll or args.aptxhq:
codec = BTCodec.aptXAdaptiveHighQuality if args.aptxhq else BTCodec.aptXAdaptiveLowLatency
print("Switching preferred aptX codec to %s" % codec.name)
msg = SetFeatureReq(BTFeatureSet.PreferredAptXCodecVariant, codec)
dev.send_msg(msg)
read_and_explain_msgs(dev, timeout_ms=1000) # Use larger timeout to give time to print final codec used, if any
elif args.devices:
print("List of paired devices:")
for paired_dev in get_paired_devices(dev, timeout_ms=SHORT_TIMEOUT):
print("%r (%s)" % (paired_dev.name, paired_dev.addr))
elif args.pair is not None:
if args.pair=="*":
# Pair with any device
msg = SetInquiryModeReq(BTInquiryAction.InquiryWithPair)
dev.send_msg(msg)
print("Entering pairing mode")
else:
addr = BTAddr(args.pair)
msg = SetInquiryModeReq(BTInquiryAction.InquiryPairSpecificSink, addr)
dev.send_msg(msg)
print("Pairing with %s"%addr)
try:
for msg in dev.read_msgs(timeout_ms=PAIR_TIMEOUT):
if isinstance(msg, GetInquiryDataMsg):
print("Found device %r (%s)" % (msg.displayName, msg.addr))
elif isinstance(msg, GetStateMsg):
if msg.state == BTState.Connected:
print("Connected to device %r"%msg.displayName)
break
except OSError: # Received on SIGINT...
pass
finally:
try:
print("Leaving pairing mode")
except KeyboardInterrupt:
pass
finally:
msg = StopInquiryModeReq()
send_msg(dev, msg)
elif args.forget:
# TODO I couldn't get forgetting about just one device to work; it is not exercised by app
msg = ForgetDeviceReq(index=255)
dev.send_msg(msg)
print("Erased all paired devices")
# No point reading messages as device will self-reset
elif args.connect or args.disconnect:
action = BTConnectionAction.Connect if args.connect else BTConnectionAction.Disconnect
name = args.connect if args.connect else args.disconnect
if args.disconnect == '*':
# Disconnect from current device
curdev = get_currently_connected_device(dev, timeout_ms=SHORT_TIMEOUT)
if curdev:
addr = curdev.addr
else:
print("Not connected to any device")
sys.exit(1)
else:
try:
addr = BTAddr(name)
except ValueError:
# Not a bluetooth address!
addr = get_paired_device_address(dev, name, timeout_ms=SHORT_TIMEOUT)
if not addr:
print("No such device: %s" % name)
sys.exit(1)
print("%s device '%s'..." % ("Connecting to" if args.connect else "Disconnecting from", addr))
msg = SetConnectionReq(action, addr)
dev.send_msg(msg)
read_and_explain_msgs(dev, timeout_ms=MID_TIMEOUT)
elif args.get:
features = [val.name for val in BTFeatureGet]
for feature in args.get:
feature = BTFeatureGet(features.index(feature))
msg = GetFeatureReq(feature)
dev.send_msg(msg)
for msg in dev.read_msgs(timeout_ms=SHORT_TIMEOUT):
if isinstance(msg, GetFeatureMsg):
if msg.feature == feature:
print("%s : %s" % (msg.feature.name, msg.value))
else:
break
elif args.set:
features = [val.name for val in BTFeatureSet]
for feature, value in args.set:
try:
feature = BTFeatureSet(features.index(feature))
except ValueError:
print("Feature %r not found, skipping" % feature)
continue
valuetype = feature.valuetype
if valuetype is bool:
value = value.lower() in ('y', 'yes', 't', 'true', 'on', '1')
elif valuetype is int:
value = int(value)
msg = SetFeatureReq(feature, value)
dev.send_msg(msg)
print("Setting %s to %r"%(msg.feature, msg.value))
dev.read_msgs(timeout_ms=SHORT_TIMEOUT)
else:
msg = GetStateReq()
dev.send_msg(msg)
read_and_explain_msgs(dev, timeout_ms=SHORT_TIMEOUT)
if verbose:
print("Printing events from device, ^C to quit")
read_and_explain_msgs(dev, timeout_ms=0)
|