DBus-monitor 监听蓝牙 activity
DBus-monitor to watch bluetooth activity
我正在尝试自动读取 Bluetoothctl 的输出形式。因此,如果有新设备,bash 脚本将扫描输出以查找某些词,例如和回显。 ([新]设备x:x:x:x:x)。现在我发现您可以为此使用 DBus 监控。但我不确定如何使用它。那里没有很多例子。也没有向导。提前致谢
Bluetoothctl 使用 Bluez5。 Bluez5 在 DBus 中为其提供的每个功能公开接口。
如果您想以这种方式开始,请尝试了解什么是 DBus 以及如何使用它。
然后看看 Bluez 公开了哪些 DBus 接口以及您可以用它做什么。最后开始直接或使用代理调用 DBus 方法!
这里是 link 到 bluetoothctl 源代码(查看底部附近找到您熟悉的命令列表)https://git.kernel.org/cgit/bluetooth/bluez.git/tree/client/main.c
Bluetoothctl 是使用 GBDus(C 中 dbus 的 GLib 绑定)创建的,但是您使用 python glib 绑定。在上面的 git 中,您还可以在 /tree/doc
中找到所有 bluez dbus 接口的文档
我正在尝试自动读取 Bluetoothctl 的输出形式。因此,如果有新设备,bash 脚本将扫描输出以查找某些词,例如和回显。 ([新]设备x:x:x:x:x)。现在我发现您可以为此使用 DBus 监控。但我不确定如何使用它。那里没有很多例子。也没有向导。提前致谢
Bluetoothctl 使用 Bluez5。 Bluez5 在 DBus 中为其提供的每个功能公开接口。
如果您想以这种方式开始,请尝试了解什么是 DBus 以及如何使用它。 然后看看 Bluez 公开了哪些 DBus 接口以及您可以用它做什么。最后开始直接或使用代理调用 DBus 方法!
这里是 link 到 bluetoothctl 源代码(查看底部附近找到您熟悉的命令列表)https://git.kernel.org/cgit/bluetooth/bluez.git/tree/client/main.c
Bluetoothctl 是使用 GBDus(C 中 dbus 的 GLib 绑定)创建的,但是您使用 python glib 绑定。在上面的 git 中,您还可以在 /tree/doc
中找到所有 bluez dbus 接口的文档