iwd/test/list-devices

34 lines
980 B
Plaintext
Raw Normal View History

2016-04-28 01:27:25 +02:00
#!/usr/bin/python3
2015-03-26 06:11:18 +01:00
import sys
import dbus
bus = dbus.SystemBus()
manager = dbus.Interface(bus.get_object("net.connman.iwd", "/"),
"org.freedesktop.DBus.ObjectManager")
objects = manager.GetManagedObjects()
for path in objects:
if 'net.connman.iwd.Device' not in objects[path]:
continue
properties = objects[path]['net.connman.iwd.Device']
device = dbus.Interface(bus.get_object("net.connman.iwd", path),
'net.connman.iwd.Device')
2015-03-26 06:11:18 +01:00
print("[ %s ]" % path)
for key in properties:
val = properties[key]
2015-03-26 06:11:18 +01:00
print(" %s = %s" % (key, val))
print(" Sorted networks:")
for path2, ssid, rssi, security in device.GetOrderedNetworks():
print(" [ %s ]" % path2)
2015-03-26 06:11:18 +01:00
print(" SSID = %s" % (ssid,))
print(" Signal strength = %i dBm" % (rssi / 100,))
print(" Security = %s" % (security,))