15

我正在尝试在 Linux 上使用 Python列出所有附近/可发现的蓝牙设备,包括那些已经配对的设备。

我知道如何使用其地址列出设备的服务,并且可以成功连接:

services = bluetooth.find_service(address='...')

阅读 PyBluez 文档,如果我不指定任何标准,我希望附近的任何设备都会出现:

“如果没有指定标准,则返回检测到的所有附近服务的列表。”

我现在需要的“唯一”事情是能够列出已经配对的设备,无论它们是否打开、关闭、附近。就像我在 Ubuntu/Unity 中的所有设置 --> 蓝牙中得到的列表一样。

顺便说一句,以下没有列出我机器上已经配对的设备,即使它们在/附近也是如此。可能是因为一旦配对就无法发现它们:

import bluetooth
for d in bluetooth.discover_devices(flush_cache=True):
    print d

有任何想法吗 ...?

编辑:我找到并安装了“bluez-tools”。

bt-device --list

...给我我需要的信息,即添加设备的地址。

我检查了 C 源代码,发现这可能不像我想象的那么容易。

仍然不知道如何在 Python 中执行此操作...

编辑:我认为 DBUS 可能是我应该阅读的内容。似乎够复杂。如果有人有一些代码可以分享,我会非常高兴。:)

4

4 回答 4

9

我设法自己解决了这个问题。以下片段列出了我的默认蓝牙适配器上所有配对设备的地址:

import dbus

bus = dbus.SystemBus()

manager = dbus.Interface(bus.get_object('org.bluez', '/'), 'org.bluez.Manager')

adapterPath = manager.DefaultAdapter()

adapter = dbus.Interface(bus.get_object('org.bluez', adapterPath), 'org.bluez.Adapter')

for devicePath in adapter.ListDevices():
    device = dbus.Interface(bus.get_object('org.bluez', devicePath),'org.bluez.Device')
    deviceProperties = device.GetProperties()
    print deviceProperties["Address"]
于 2013-01-14T11:27:32.903 回答
6

由于采用蓝牙 API 的第 5 版,@Micke 解决方案中使用的大部分功能都被删除了,与总线的交互通过 ObjectManager.GetManagedObjects [1] 进行

import dbus


def proxyobj(bus, path, interface):
    """ commodity to apply an interface to a proxy object """
    obj = bus.get_object('org.bluez', path)
    return dbus.Interface(obj, interface)


def filter_by_interface(objects, interface_name):
    """ filters the objects based on their support
        for the specified interface """
    result = []
    for path in objects.keys():
        interfaces = objects[path]
        for interface in interfaces.keys():
            if interface == interface_name:
                result.append(path)
    return result


bus = dbus.SystemBus()

# we need a dbus object manager
manager = proxyobj(bus, "/", "org.freedesktop.DBus.ObjectManager")
objects = manager.GetManagedObjects()

# once we get the objects we have to pick the bluetooth devices.
# They support the org.bluez.Device1 interface
devices = filter_by_interface(objects, "org.bluez.Device1")

# now we are ready to get the informations we need
bt_devices = []
for device in devices:
    obj = proxyobj(bus, device, 'org.freedesktop.DBus.Properties')
    bt_devices.append({
        "name": str(obj.Get("org.bluez.Device1", "Name")),
        "addr": str(obj.Get("org.bluez.Device1", "Address"))
    })  

bt_device列表中有包含所需数据的字典:即

例如

[{
    'name': 'BBC micro:bit [zigiz]', 
    'addr': 'E0:7C:62:5A:B1:8C'
 }, {
    'name': 'BBC micro:bit [putup]',
    'addr': 'FC:CC:69:48:5B:32'
}]

参考:[1] http://www.bluez.org/bluez-5-api-introduction-and-porting-guide/

于 2018-08-26T17:44:04.833 回答
5

您总是可以将其作为 shell 命令执行并读取它返回的内容:

import subprocess as sp
p = sp.Popen(["bt-device", "--list"], stdin=sp.PIPE, stdout=sp.PIPE, close_fds=True)
(stdout, stdin) = (p.stdout, p.stdin)
data = stdout.readlines()

现在data将包括所有输出行的列表,您可以根据需要对其进行格式化和播放。

于 2013-01-10T21:09:44.180 回答
2

有点长,但在一行中就可以了

bt-device -l | egrep '\(.*\)' | grep -oP '(?<=\()[^\)]+' | xargs -n1 bt-device -i 
于 2018-09-20T11:47:54.490 回答