iwd/test/wps-pin

21 lines
492 B
Plaintext
Raw Normal View History

2017-02-17 20:44:59 +01:00
#!/usr/bin/python3
import sys
import dbus
if (len(sys.argv) != 2 and len(sys.argv) != 3):
print("Usage: %s <device> [pin]" % (sys.argv[0]))
sys.exit(1)
bus = dbus.SystemBus()
wsc = dbus.Interface(bus.get_object("net.connman.iwd", sys.argv[1]),
2019-10-24 17:43:08 +02:00
"net.connman.iwd.SimpleConfiguration")
2017-02-17 20:44:59 +01:00
if (len(sys.argv) == 3):
pin = sys.argv[2]
else:
pin = wsc.GeneratePin()
print("Please use '%s' as the PIN" % (pin))
2017-02-23 00:11:42 +01:00
wsc.StartPin(pin, timeout=125)