summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtest/start-scanning21
1 files changed, 9 insertions, 12 deletions
diff --git a/test/start-scanning b/test/start-scanning
index ff0dd07a..9d3f4db5 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"