test: Add skeleton wps-pin script

This commit is contained in:
Denis Kenzior 2017-02-17 13:44:59 -06:00
parent 7d437241bd
commit 2ffe0fb7db
1 changed files with 18 additions and 0 deletions

18
test/wps-pin Executable file
View File

@ -0,0 +1,18 @@
#!/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]),
"net.connman.iwd.WiFiSimpleConfiguration")
if (len(sys.argv) == 3):
pin = sys.argv[2]
else:
pin = wsc.GeneratePin()
print("Please use '%s' as the PIN" % (pin))