我正在编写一个应用程序来监视连接到计算机的一些设备。我像这样遍历所有设备:
from pyudev import Context, Monitor, MonitorObserver
context = Context()
monitor = Monitor.from_netlink(context)
for device in context.list_devices():
print_device(device)
检测到 USB 设备以及大多数内置板(以太网,...),但不知道在蓝牙中连接的设备(在 rfcomm 中配对和连接)。我错过了什么,还是 Pyudev 根本无法发现这些设备?