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

Event for Bluez gatt server disconnect from client

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

您也可以按照以下命令直接检查设备的 "Connected" 属性。可能您需要以编程方式使用相应的 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

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