![]() |
2010-06-21
, 10:45
|
Posts: 83 |
Thanked: 130 times |
Joined on Dec 2009
|
#2
|
![]() |
2010-06-21
, 10:53
|
|
Posts: 664 |
Thanked: 160 times |
Joined on Jul 2008
@ Australia
|
#3
|
So this one is from android.. Here is what daemon must do..
Dial number and intiate call
The phone rings for other person.
When person pickes up call, ie just when the timer for ur call starts.. send vibration signal to user..
Why this is useful?
U dont have to be holding the phone to your ear while waiting for the call to be connected.. You can call and hold the phone down.. when it vibrates, bring it up to your ear and talk..
Seems like a simple script but my lack of Linux coding abilities restricts me..
Would be grateful if someone can make the daemon..
![]() |
2010-06-21
, 10:58
|
Posts: 134 |
Thanked: 41 times |
Joined on Mar 2010
|
#4
|
![]() |
2010-06-21
, 11:52
|
Posts: 51 |
Thanked: 8 times |
Joined on Jan 2010
|
#5
|
![]() |
2010-06-21
, 12:29
|
Posts: 240 |
Thanked: 68 times |
Joined on Nov 2009
|
#6
|
![]() |
2010-06-21
, 14:13
|
|
Posts: 1,030 |
Thanked: 792 times |
Joined on Jun 2009
|
#7
|
![]() |
2010-06-21
, 14:57
|
Posts: 44 |
Thanked: 28 times |
Joined on Mar 2010
|
#8
|
So this one is from android.. Here is what daemon must do..
Dial number and intiate call
The phone rings for other person.
When person pickes up call, ie just when the timer for ur call starts.. send vibration signal to user..
Why this is useful?
U dont have to be holding the phone to your ear while waiting for the call to be connected.. You can call and hold the phone down.. when it vibrates, bring it up to your ear and talk..
Seems like a simple script but my lack of Linux coding abilities restricts me..
Would be grateful if someone can make the daemon..
import gobject, dbus from dbus.mainloop.glib import DBusGMainLoop def handle_call(obj_path, callernumber): print '%s is calling' % callernumber DBusGMainLoop(set_as_default=True) bus = dbus.SystemBus() bus.add_signal_receiver(handle_call, path='/com/nokia/csd/call', dbus_interface='com.nokia.csd.Call', signal_name='Coming') gobject.MainLoop().run()
The Following User Says Thank You to ny-hardcore For This Useful Post: | ||
![]() |
2010-06-21
, 15:14
|
Posts: 37 |
Thanked: 9 times |
Joined on Dec 2009
@ Spain
|
#9
|
![]() |
2010-06-21
, 15:41
|
|
Posts: 2,121 |
Thanked: 1,540 times |
Joined on Mar 2008
@ Oxford, UK
|
#10
|
Update.. Nostradamus has created a deb package for the function and uploaded to extras devel.. look for out-call-vibro
Thanks to everyone who contributed to this thread.
So this one is from android.. Here is what daemon must do..
Dial number and intiate call
The phone rings for other person.
When person pickes up call, ie just when the timer for ur call starts.. send vibration signal to user..
Why this is useful?
U dont have to be holding the phone to your ear while waiting for the call to be connected.. You can call and hold the phone down.. when it vibrates, bring it up to your ear and talk..
Seems like a simple script but my lack of Linux coding abilities restricts me..
Would be grateful if someone can make the daemon..
Last edited by rnb89; 2010-07-23 at 05:27.