iwd/test/wps-push-button

14 lines
318 B
Plaintext
Raw Normal View History

2016-09-21 23:30:13 +02:00
#!/usr/bin/python3
import sys
import dbus
if (len(sys.argv) != 2):
print("Usage: %s <device>" % (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")
2016-09-21 23:30:13 +02:00
wsc.PushButton()