16 lines
237 B
Python
16 lines
237 B
Python
import dbus
|
|
import bluezutils
|
|
|
|
bus = dbus.SystemBus()
|
|
|
|
|
|
dummy = dbus.Interface(bus.get_object('org.bluez', '/'), 'org.freedesktop.DBus.Introspectable')
|
|
|
|
#print dummy.Introspect()
|
|
|
|
|
|
try:
|
|
adapter = bluezutils.find_adapter()
|
|
except:
|
|
pass
|