summaryrefslogtreecommitdiffstats
path: root/test/set-ddr
blob: 5d061b951f49eefd034a2caf69ab4dab61891392 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/python

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])))