-
01-02-2008, 04:24 PM #1
[APP RELEASE] SMS Notify (vibrates)
Nate True has released an SMS notifier application called SMSNotify. This app lets your phone vibrate every 15 seconds when u have unread SMS! Available through installer.
Now if we can get something similar for missed calls...Last edited by TheHK; 03-20-2008 at 04:58 PM.
If I help you out, help me out by clicking the
button 
-
The Following 5 Users Say Thank You to TheHK For This Useful Post:
B1naryBand1t (01-02-2008), caubetocdaido (03-16-2008), Holmes31 (03-20-2008), ivre (01-03-2008), khile (06-08-2008)
-
01-02-2008, 04:28 PM #2
installing this application, you need to install BSD Subsystem first...
Is it safe to install BSD Subsystem...
What actually BSD Subsystem do on our IPhone?
Im using v1.0.2
-
01-02-2008, 04:31 PM #3
-
01-02-2008, 04:42 PM #4
-
01-02-2008, 04:44 PM #5
Saw this on installer, great development and listening to what the people want.
Thanks
-
01-02-2008, 04:46 PM #6iPhone? More like MyPhone
- Join Date
- Nov 2007
- Location
- In the clouds.
- Posts
- 131
- Thanks
- 2
- Thanked 16 Times in 11 Posts
WOw
This is real handy but if the time is pre-set I think 15 seconds is a little over-kill. I'm sure a minimum of 30 seconds would do and maybe a minute would be more suitable.
I hope Nate plans on (if not already) allowing user variable time settings.
-
01-02-2008, 05:07 PM #7
Man all these new apps are amazing, awesome job devs.
keep up the great work!!!
-
01-02-2008, 08:10 PM #8
I wonder if Nate could incorporate missed calls into this program also...now that would be cool.
-
01-02-2008, 08:49 PM #9
Yes I realley hope they are able to incorporate missed calls. That is one of the top things I have been wanting along with Video and Flash .
We need a missed call reminder of some sort.
-
01-02-2008, 08:53 PM #10What's Jailbreak?
- Join Date
- Aug 2007
- Location
- Southfield, MI
- Posts
- 23
- Thanks
- 2
- Thanked 0 Times in 0 Posts
Also would love a user-settable time, missed calls, and ALERTS as well!
Check out Media Database for the iPhone!
http://www.djkev.com/apps/iPhone.php
-
01-02-2008, 10:36 PM #11iPhone? More like MyPhone
- Join Date
- Oct 2007
- Location
- Las Cruces, NM
- Posts
- 102
- Thanks
- 4
- Thanked 6 Times in 2 Posts
This is cool! One thing you guys might want to consider too is that the battery life will be reduced greatly as well....thats the only down side.
-
The Following User Says Thank You to wgr73 For This Useful Post:
BlueBliss (06-10-2008)
-
01-02-2008, 10:38 PM #12
I agree...great app!
Would like to see the ability to choose between vibrate and a tone...
For example...if you have a text message waiting, then is should ring your text message tone at your selected interval. If you happen to have the phone on vibrate, then it would vibrate.
Also, if you missed a call, it would be nice to be able to set a tone to that as well...and again, if you have it on vibrate it would vibrate as well.
-
01-02-2008, 10:38 PM #13
In smsnotify.sh change line
sleep 15
to how many seconds you want vibrated between ( example 60 seconds = 1 minute )
sleep 120
so every 2 minutes it would vibrate.
Now looking at how this app is run seems like it queries the sms database for new entry if so vibrate until new entry is read. You could in theory make it play a sound instead of vibrate easily.
As well could be modified to look at recent/missed call database and voicemail and do same. ( basically anything that has a number bubble associated with it )
As for Alerts( reminders/calender/battery 20/10% , etc.. )...think it would need some special coding to detect. As they are jsut queried reponses from a database and never saved anywhere as a new message.
But i must say as is a great little utility. Simple yet effective.Last edited by theguyz; 01-02-2008 at 10:46 PM.
-
The Following User Says Thank You to theguyz For This Useful Post:
porktart (01-02-2008)
-
01-02-2008, 11:30 PM #14
where is the file located to modify?
-
01-03-2008, 02:19 AM #15
-
01-03-2008, 02:51 AM #16
/usr/local/smsnotify.sh
use a text editor to change the 15 sec to whatever you prefer.Last edited by jrentzke; 01-03-2008 at 03:06 AM.
-
The Following User Says Thank You to jrentzke For This Useful Post:
porktart (01-03-2008)
-
01-03-2008, 03:59 AM #17
The 15 seconds did become annoying after a while, I'm going to try to change it to 120 seconds and see how it is
If I help you out, help me out by clicking the
button 
-
01-03-2008, 07:38 AM #18
-
01-03-2008, 08:06 AM #19
how to play a sound with SMS notify AND MISSED CALL work around
Hi Guys,
I found a way to play a sound whenever it vibrates by editing smsnotify.sh.
I also found a work around in 10 minutes to make it also check for the last call and see if it was incoming and missed. NOTE that this only checks for the LAST call, but for my imediate needs, it works fine. To make it stop 'notifying' me for the last missed call, I just need to make a call, it doesn't even need to ring, just click on the number to dial someone, and click on end call straight away. I'll work on this further tomorrow and see if I can figure out how to make this better.
here's a copy of my smsnotify.sh file:
-------------------
#!/bin/sh
smsnpath=/usr/local/smsnotify
sql=$smsnpath/sqlite3
vibrate=$smsnpath/vibrator
audiofile=/Library/Ringtones/Doorbell.m4r
while test 1
do
n=`$sql /var/root/Library/SMS/sms.db 'select count(*) from message where flags=0'`;
if [ "$n" -gt 0 ]
then
/var/root/bin/playaudio $audiofile &
$vibrate &
fi
c=`$sql /var/root/Library/CallHistory/call_history.db 'select count(*) from call where flags=4 and duration=0 and ROWID=(select max(ROWID) from call)'`;
if [ "$c" -gt 0 ]
then
/var/root/bin/playaudio $audiofile &
$vibrate &
fi
sleep 60
done
-------------------
in my case, I picked the doorbell ringtone, and also changed the interval to 60 seconds.
I'm sure this can be improved. But, as I said, I came up with this solution in only a few minutes.
Oh, nearly forgot, to install the 'playaudio' script, you need to install EricaUtilities on your phone, and also need the BSD subsystem. easiest way to change the script is through SSH into your phone.
Cheers,
FernandoLast edited by fserto; 01-03-2008 at 08:14 AM.
-
-
01-03-2008, 08:28 AM #20
Just looking through your code and looks good. Looks similiar to what i am currently trying, but beleive the missed call will always be active unless you click on the missed call in recent as if you don't normally the bubble # for missed call is still present thus database has new entry.
-
The Following User Says Thank You to theguyz For This Useful Post:
porktart (01-03-2008)



LinkBack URL
About LinkBacks
Reply With Quote

