蓝兹 5.28
目标 - 控制 iOS 曲目跳过,并以编程方式从 Bluez 启动连接。不想要a2dp。
如果我从 iPhone/iPad 启动连接(转到 BT 设置,单击 Pi 设备),一切正常,我想避免这种情况,而不必摆弄手机。(使用 Pi 进行汽车设置)。我有控制权、跟踪元数据等。
connect xx:xx:xx:xx:xx:xx
在 bluetoothctl 中执行 a会产生:
a2dp-source profile connect failed for 6C:70:9F:7E:EF:A8: Protocol not available
好的。它需要pulseaudio +模块。我安装了它,现在我可以从 Bluez 连接。但是,它现在添加并自动选择 Bluez 作为音频输出设备。不想那样,不得不再次摆弄电话。只想控制。虽然我更喜欢这个,如果没有的话,因为我可以从操作系统的任何地方更改输出设备而不必去设置。
好吧,让我一起禁用 a2dp 看看。
/usr/libexec/bluetooth/bluetoothd -d -C -n --noplugin=a2dp
或者
/usr/libexec/bluetooth/bluetoothd -d -C -n --plugin=avrcp
上述两种结果相同
bluetoothd[14176]: src/device.c:connect_profiles() /org/bluez/hci0/dev_6C_70_9F_7E_EF_A8 (all), client :1.57
bluetoothd[14176]: src/device.c:connect_profiles() Resolving services for /org/bluez/hci0/dev_6C_70_9F_7E_EF_A8
bluetoothd[14176]: src/adapter.c:connected_callback() hci0 device 6C:70:9F:7E:EF:A8 connected eir_len 19
bluetoothd[14176]: src/device.c:search_cb() 6C:70:9F:7E:EF:A8: No service update
bluetoothd[14176]: src/device.c:device_svc_resolved() /org/bluez/hci0/dev_6C_70_9F_7E_EF_A8 err 0
bluetoothd[14176]: src/device.c:connect_profiles() /org/bluez/hci0/dev_6C_70_9F_7E_EF_A8 (all), client :1.57
bluetoothd[14176]: src/adapter.c:dev_disconnected() Device 6C:70:9F:7E:EF:A8 disconnected, reason 3
bluetoothd[14176]: src/adapter.c:adapter_remove_connection()
bluetoothd[14176]: plugins/policy.c:disconnect_cb() reason 3
bluetoothd[14176]: src/adapter.c:bonding_attempt_complete() hci0 bdaddr 6C:70:9F:7E:EF:A8 type 0 status 0xe
bluetoothd[14176]: src/device.c:device_bonding_complete() bonding (nil) status 0x0e
bluetoothd[14176]: src/device.c:device_bonding_failed() status 14
bluetoothd[14176]: src/adapter.c:resume_discovery()
同样,如果我进入蓝牙设置并单击 iPhone 上的设备,一切都会完全按照我的意愿工作。问题是从 Bluez 获得连接。
在我看来,iOS 正在请求 a2dp,但我不确定如何让 Bluez 超越它,或者停止宣传它的可用。我知道有用于禁用配置文件的越狱选项,但要保持它的清洁。
我还尝试了 HID 设置,它可以向它发送击键,但随后它隐藏了屏幕键盘。
谢谢!