Bluetooth audio service API description *************************************** Copyright (C) 2004-2007 Marcel Holtmann Copyright (C) 2005-2006 Johan Hedberg Copyright (C) 2005-2006 Brad Midgley Audio Manager hierarchy ======================= Service org.bluez.audio Interface org.bluez.audio.Manager Object path /org/bluez/audio Methods array{string} ListHeadsets() Returns list of headset objects that are configured. string DefaultHeadset() Returns the object path for the default headset device. string CreateHeadset(string address) Create a new headset device and returns its object path on return. void RemoveHeadset(string path) Signals void HeadsetCreated(string path) void HeadsetRemoved(string path) void DefaultHeadsetChanged(string path) Audio Headset hierarchy ======================= Service org.bluez.audio Interface org.bluez.audio.Headset Object path /org/bluez/audio/headset* Methods string GetAddress() string GetName() void Connect() void Disconnect() boolean IsConnected() uint16 GetSpeakerGain() uint16 GetMicrophoneGain() void SetSpeakerGain(uint16 gain) Gain is 0..15 void SetMicrophoneGain(uint16 gain) Gain is 0..15 void IndicateCall() Indicate an incoming call on the headset connected to the stream. Will continue to ring the headset about every 3 seconds. void CancelCall() Cancel the incoming call indication. Signals void SpeakerGainChanged(uint16 gain) The speaker gain changed. void MicrophoneGainChanged(uint16 gain) The microphone gain changed. void CallIndicated() An incoming call was indicated. void CallCanceled() Incoming call was canceled.