0

我正在使用最新的 Bluez 版本 5.53-0ubuntu3 PyBluez,直到昨天一切正常,这个 python 代码发现服务就好了

import bluetooth
mac = "FF:A0:AB:21:20:F4"
print(bluetooth.find_service(address=mac)

但是今天这个 python 代码开始给我空列表而不是通常的服务,所以我调试它并且真的很困惑,因为我认为我已经破坏了一些东西,而且我的三星 Galaxy S10+ 不能只是停止发送蓝牙服务(我确认它仍然通过在另一部手机上使用蓝牙扫描仪应用程序广播蓝牙服务,并且仍然广播服务)

然后我尝试使用 sdptool 浏览服务 sudo sdptool browse FF:A0:AB:21:20:F4,它给了我 Failed to connect to SDP server on FF:A0:AB:21:20:F4: Operation now in progress

然后我尝试使用浏览本地服务,起初它给了

Failed to connect to SDP server on FF:FF:FF:00:00:00: No such file or directory

但我设法使用这个anwser解决了这个问题:https ://stackoverflow.com/a/33141030/14105014

然后它至少显示了本地服务,但它仍然没有显示远程蓝牙服务

不知道这是否重要我有 RT3290 芯片组,我使用这个安装了它的驱动程序:https ://askubuntu.com/a/1021231 它一直工作到昨天

希望有人知道为什么会发生这种情况以及是否可以解决?

感谢您的回复和最诚挚的问候

4

1 回答 1

0

BlueZ 开发人员已将许多工具标记为已弃用。我的理解是您现在正在bluetoothd使用--compat交换机启动。查看手册页,这

提供已弃用的命令行界面

解决方案是转向 BlueZ 目前支持的工作方式。这意味着使用 D-Bus API,如下所示:https ://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc

Python 有许多不同的 D-Bus 绑定。下面是一个pydbus的例子

这会扫描附近的设备 20 秒,然后打印出所有支持 A2DP 配置文件的设备

import pydbus
from gi.repository import GLib

discovery_time = 20

bus = pydbus.SystemBus()
mainloop = GLib.MainLoop()

# Connect to the DBus api for the Bluetooth adapter
adapter = bus.get('org.bluez', '/org/bluez/hci0')

def end_discovery():
    """Handler for end of discovery"""
    mainloop.quit()
    adapter.StopDiscovery()

# Run discovery
adapter.StartDiscovery()
GLib.timeout_add_seconds(discovery_time, end_discovery)
print('Finding nearby devices...')
mainloop.run()

# Iterate around the devices to find audio devices
mngr = bus.get('org.bluez', '/')
mng_objs = mngr.GetManagedObjects()

for path in mng_objs:
    uuids = mng_objs[path].get('org.bluez.Device1', {}).get('UUIDs', [])
    # print(path, uuids)
    for uuid in uuids:
        # Service discovery UUIDs
        # https://www.bluetooth.com/specifications/assigned-numbers/service-discovery/
        # AudioSink - 0x110B - Advanced Audio Distribution Profile (A2DP)
        if uuid.startswith('0000110b'):
            print(mng_objs[path].get('org.bluez.Device1', {}).get('Name'),
                  mng_objs[path].get('org.bluez.Device1', {}).get('Address'))
于 2020-08-20T09:20:40.867 回答