iwd/test/scan-for-networks

15 lines
307 B
Plaintext
Raw Normal View History

2016-04-28 01:27:26 +02:00
#!/usr/bin/python3
2015-03-26 06:18:59 +01:00
import sys
import dbus
if (len(sys.argv) != 2):
print("Usage: %s <device>" % (sys.argv[0]))
sys.exit(1)
bus = dbus.SystemBus()
device = dbus.Interface(bus.get_object("net.connman.iwd", sys.argv[1]),
"net.connman.iwd.Station")
2015-03-26 06:18:59 +01:00
device.Scan()