interface = dbus.Interface(bus.get_object('org.bluez', adapter + "/" + DEVICE), "org.bluez.Input") interface.connect_to_signal("PropertyChanged", connected)
def connected(*args, **kwargs): if args[0] == "Connected": if args[1] == False: iface.SystemNoteInfoprint("BT device disconnected") else: iface.SystemNoteInfoprint("BT device connected")