![]() |
user notifications when on a call
I'm trying to write something where I have to make a notification to a user when they are on a call.
Preferably this would be a sound notification but a small vibration would do. Something like when you get a second call or message. I'm using QT but the multimedia framework doesn't play on a call. Is there anything I can use to notify a user of an event when they are on a call |
Re: user notifications when on a call
I am not sure about playing sound, but for vibration I am using following code, You can try that out if works for you.
void Sample::enableVibration() { #ifdef Q_WS_MAEMO_5 mDbusInterface = new QDBusInterface(MCE_SERVICE, MCE_REQUEST_PATH, MCE_REQUEST_IF, QDBusConnection::systemBus(), this); mDbusInterface->call(MCE_ENABLE_VIBRATOR); #endif } void Sample::vibrate(int aTimeout) { #ifdef Q_WS_MAEMO_5 mDbusInterface->call(MCE_ACTIVATE_VIBRATOR_PATTERN, "PatternIncomingCall"); QTimer::singleShot(aTimeout,this,SLOT(stopVibratio n())); #endif } void Sample::stopVibration() { #ifdef Q_WS_MAEMO_5 mDbusInterface->call(MCE_DEACTIVATE_VIBRATOR_PATTERN, "PatternIncomingCall"); #endif } |
Re: user notifications when on a call
Quote:
I tried the exact same thing via python/dbus, but to no avail. |
Re: user notifications when on a call
Hi,
did not tried this while on call, will try soon and let you know. |
Re: user notifications when on a call
I tested the above while on a call and it didn't do anything :(
|
Re: user notifications when on a call
I found a way to get a vibration when on a call.
If, as root, you call Code:
echo 100 > /sys/class/leds/twl4030\:vibrator/brightness Code:
echo 0 > /sys/class/leds/twl4030\:vibrator/brightness So from C \ C++ you can open the file and write to it to enable vibration. The only potential issue is that your application must be running as root. For sound notifications I haven't gotten anything working yet. I've tried creating my own pulsesink as described here and chaning the media.name to some of the tone one's described in the conf file but can get nothing working yet. |
All times are GMT. The time now is 13:59. |
vBulletin® Version 3.8.8