经过一番折腾,我得到了一个 pybluez 脚本,可以连接到各种设备上的 AVRCP 配置文件,并阅读响应。
代码片段:
addr="e2:8b:8e:89:6c:07" #S530 white
port=23
if (port>0):
print("Attempting to connect to L2CAP port ",port)
socket=bluetooth.BluetoothSocket(bluetooth.L2CAP);
socket.connect((addr,port))
print("Connected.")
while True:
print("Waiting on read:")
data=socket.recv(1024)
for b in data:
print("%02x"%b,end=" ")
print()
socket.close()
当我按下听筒上的按钮时,我得到的结果如下:
Attempting to connect to L2CAP port 23
Connected.
Waiting on read:
10 11 0e 01 48 00 00 19 58 10 00 00 01 03
Waiting on read:
20 11 0e 00 48 7c 44 00
Waiting on read:
30 11 0e 00 48 7c 46 00
Waiting on read:
40 11 0e 00 48 7c 44 00
仔细阅读规范后,看起来我看到的是 PASSTHROUGH 命令,其中 44 是“PLAY”操作命令,而 46 是“PAUSE”(我认为)我不知道 10 11 0e 是什么意思,除了从第一个字节似乎是某种序列号这一事实来看。我的问题是三方面的:
- 我不知道在哪里可以找到有效 operation_id 的列表。它在规范中提到,但除了一些随机示例之外没有定义。
- 规范再次引用了子单元类型和 ID(在上例中为 48),但没有定义它们 AFAICT。
- 没有提到前三个字节是什么。它们甚至可能是 L2CAP 的一部分,与 AVRCP 没有直接关系,我对 pybluez 还不够熟悉。
在上述任何一点上的任何帮助都会有所帮助。编辑:作为参考,AVRCP 规范的详细信息似乎在这里:https ://www.bluetooth.org/docman/handlers/DownloadDoc.ashx?doc_id=119996