Bluez gatt服务器与客户端断开连接的事件

时间:2017-05-19 12:51:23

标签: python raspberry-pi bluez

是否有任何方法可以检查连接设备在python bluez库中是否丢失连接?

1 个答案:

答案 0 :(得分:0)

您可以直接查看"已连接"设备的属性如下面的命令。可能你需要以编程方式使用相应的python GDBUS方法调用。

dbus-send --system --print-reply --type=method_call --dest=org.bluez /org/bluez/hci0/dev_44_D8_84_02_A3_17 org.freedesktop.DBus.Properties.Get string:"org.bluez.Device1" string:"Connected"

另一个最佳选择是观察" PropertiesChanged"具有以下配置的信号,

Interface: org.freedesktop.DBus.Properties
Object Path: /org/bluez/hci0/dev_44_D8_84_02_A3_17
Signal : PropertiesChanged
Method: g_dbus_connection_signal_subscribe <<== with function pointer in callback mode

在设备断开连接时启用通知,您可以在回调函数中进行异步处理。