maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Development (https://talk.maemo.org/forumdisplay.php?f=13)
-   -   user notifications when on a call (https://talk.maemo.org/showthread.php?t=57220)

matrim 2010-06-26 22:04

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

kunal_the_one 2010-06-29 05:55

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
}

ny-hardcore 2010-06-29 10:38

Re: user notifications when on a call
 
Quote:

Originally Posted by kunal_the_one (Post 733566)
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
}

Are you able to vibrate the phone while on a call with this?
I tried the exact same thing via python/dbus, but to no avail.

kunal_the_one 2010-06-29 14:12

Re: user notifications when on a call
 
Hi,

did not tried this while on call, will try soon and let you know.

matrim 2010-06-29 20:11

Re: user notifications when on a call
 
I tested the above while on a call and it didn't do anything :(

matrim 2010-07-07 10:03

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
it will enable the vibration and it works when on a call

Code:

echo 0 > /sys/class/leds/twl4030\:vibrator/brightness
will disable vibration.

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