Skip to content
Permalink
71f1240e43
Go to file
 
 
Cannot retrieve contributors at this time
executable file 21 lines (14 sloc) 470 Bytes
#!/usr/bin/python3
import sys
import dbus
bus = dbus.SystemBus()
manager = dbus.Interface(bus.get_object('org.ofono', '/'),
'org.ofono.Manager')
modems = manager.GetModems()
for path, properties in modems:
if "org.ofono.Handsfree" not in properties["Interfaces"]:
continue
handsfree = dbus.Interface(bus.get_object('org.ofono', path),
'org.ofono.Handsfree')
handsfree.SetProperty("DistractedDrivingReduction",\
dbus.Boolean(int(sys.argv[1])))
You can’t perform that action at this time.