ofono/test/set-speaker-volume

19 lines
371 B
Plaintext
Raw Normal View History

#!/usr/bin/python
import sys
import dbus
bus = dbus.SystemBus()
manager = dbus.Interface(bus.get_object('org.ofono', '/'),
'org.ofono.Manager')
properties = manager.GetProperties()
path = properties["Modems"][0]
cv = dbus.Interface(bus.get_object('org.ofono', path),
'org.ofono.CallVolume')
cv.SetProperty("SpeakerVolume", dbus.Byte(int(sys.argv[1])))