From: Marcel Holtmann Date: Wed, 3 Dec 2008 22:02:07 +0000 (+0100) Subject: Use device interface to trigger scanning X-Git-Tag: 0.1~35 X-Git-Url: http://vcs.maemo.org/git/?a=commitdiff_plain;h=416e8cbe721a7ed8052e599edd3b7ae4249642ba;p=connman Use device interface to trigger scanning --- diff --git a/test/start-scanning b/test/start-scanning index ff0dd07..9d3f4db 100755 --- a/test/start-scanning +++ b/test/start-scanning @@ -7,25 +7,22 @@ bus = dbus.SystemBus() manager = dbus.Interface(bus.get_object('org.moblin.connman', "/"), 'org.moblin.connman.Manager') -elements = manager.ListElements() +properties = manager.GetProperties() -for path in elements: - element = dbus.Interface(bus.get_object('org.moblin.connman', path), - 'org.moblin.connman.Element') +for path in properties["Devices"]: + device = dbus.Interface(bus.get_object('org.moblin.connman', path), + 'org.moblin.connman.Device') - properties = element.GetProperties() - - if (properties["Type"] != "device"): - continue + properties = device.GetProperties() print "[ %s ]" % (path) - if (properties["Subtype"] == "wifi"): + if (properties["Type"] == "wifi"): print " Started WiFi scanning" - element.Update() - elif (properties["Subtype"] == "wimax"): + device.Scan() + elif (properties["Type"] == "wimax"): print " Started WiMAX scanning" - element.Update() + device.Scan() else: print " No scanning"