ofono/test/set-speaker-volume

18 lines
352 B
Python
Executable File

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