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()
+ properties = device.GetProperties()
- if (properties["Type"] != "device"):
+ if (properties["Powered"] == dbus.Boolean(0)):
continue
print "[ %s ]" % (path)
- element.Disable()
+ device.SetProperty("Powered", dbus.Boolean(0));
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()
+ properties = device.GetProperties()
- if (properties["Type"] != "device"):
+ if (properties["Powered"] == dbus.Boolean(1)):
continue
print "[ %s ]" % (path)
- element.Enable()
+ device.SetProperty("Powered", dbus.Boolean(1));