All Questions
3 questions
4
votes
1
answer
2k
views
Accessing iwd dbus interface from python
I am trying to use python3 dbus package to control wireless on an embedded Linux target (mips MT7628, if it matters).
System is most likely set up correctly because I have iwd + dhclient up-and-...
0
votes
1
answer
2k
views
Trouble connecting with Connman using dbus, but only the first time
I've been trying to use various Python libraries for working with Connman and the dbus, particularly this sample code:
https://github.com/liamw9534/pyconnman/blob/master/demo/demo.py
The problem I ...
2
votes
1
answer
3k
views
connman Connect to Service: DBus UnknownMethod
I wrote a simple Python script to register an Agent and to connect to a connman Service:
#!/usr/bin/python
import gobject
import dbus
import dbus.service
import dbus.mainloop.glib
class Agent(dbus....