ofono/test/set-tech-preference

25 lines
587 B
Plaintext
Raw Normal View History

#!/usr/bin/python3
import dbus
import sys
bus = dbus.SystemBus()
if len(sys.argv) == 3:
path = sys.argv[1]
tech = sys.argv[2]
elif len(sys.argv) == 2:
manager = dbus.Interface(bus.get_object('org.ofono', '/'),
2010-09-09 19:37:37 +00:00
'org.ofono.Manager')
modems = manager.GetModems()
path = modems[0][0]
tech = sys.argv[1]
else:
print("%s [PATH] technology" % (sys.argv[0]))
print("Setting technology preference for modem %s..." % path)
radiosettings = dbus.Interface(bus.get_object('org.ofono', path),
2010-09-09 19:37:37 +00:00
'org.ofono.RadioSettings')
radiosettings.SetProperty("TechnologyPreference", tech);