• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Help LEDs for notification progress?

cvam1985

Well-Known Member
Dec 8, 2009
151
1
I've seen it discussed in a thread somewhere but can't find it....

Is anyone working on an app to use the menu buttons as an LED notification? The moment for me would be close to perfect if there was some way to have lights for notification.

If I were a programmer I would be working my buns off to write this app. Alas, I am not... :(
 
I've seen it discussed in a thread somewhere but can't find it....

Is anyone working on an app to use the menu buttons as an LED notification? The moment for me would be close to perfect if there was some way to have lights for notification.

If I were a programmer I would be working my buns off to write this app. Alas, I am not... :(
I'd buy that for a $1:cool:
 
Upvote 0
If you have the latest FaceBook app there are menu settings in there that can be checked for Phone LED and apparently will light up if you have two or more missed text messages. It apparently does not work for missed calls or voicemails


Thanks for the advice - but I'm pretty sure that setting is for phones that actually have LEDs

What I'm wondering is if someone is working on an app to substitute the Moment's lack of LEDs with the Home, Menu, and Back button lights.
 
Upvote 0
If you have the latest FaceBook app there are menu settings in there that can be checked for Phone LED and apparently will light up if you have two or more missed text messages. It apparently does not work for missed calls or voicemails

As in light up the home/menu/back buttons for the Moment since it doesn't have a real LED notification? I'm going to have to play with this if that's the case.
 
Upvote 0
As in light up the home/menu/back buttons for the Moment since it doesn't have a real LED notification? I'm going to have to play with this if that's the case.


I've been playing with it and I'll be damned if I can get it to work. Someone over at Samsungmomentforum claims the same thing

"The Moment has LED notification....for some reason it is poorly implemented. The 3 softkey buttons are led notification, just like on the Instincts. Mine works but is erratic in behavior. Go into the FB app, settings, and select LED notifications. You'll see."

Still won't work for me though. Maybe we could write to Handcent and see if the devs could implement it? There's already an option in Handcent to light up the trackball for the HTC Magic...
 
Upvote 0
The lights flash when your phone switches networks, i'm not sure if its from evdo to 1xCDMA or from roaming to sprint. In one corner of the basement, i get such weak and poor reception that it switches rather frequently around there. I couldnt figure out why notification was working and NOTHING had come in until i realized what it was flashing for.

If someone could take that network call to figure out the flash commands for a moment app, there's your starting place. It is perfect for missed call/txt notification...if only it worked for that stuff.

So yea, whoever knows how to program these things, the flash lights for notification thing is set up for auto-network change.
 
Upvote 0
The lights flash when your phone switches networks, i'm not sure if its from evdo to 1xCDMA or from roaming to sprint. In one corner of the basement, i get such weak and poor reception that it switches rather frequently around there. I couldnt figure out why notification was working and NOTHING had come in until i realized what it was flashing for.

If someone could take that network call to figure out the flash commands for a moment app, there's your starting place. It is perfect for missed call/txt notification...if only it worked for that stuff.

So yea, whoever knows how to program these things, the flash lights for notification thing is set up for auto-network change.

^ Yeah mine flashes all the time in the basement when I go in and out of roaming.

I emailed Handcent's dev and asked if they could try to implement it. At least that would help with SMS notifications...
 
Upvote 0
If you will notice in good light in the top left of the sprint logo, there are 2 tiny red and green lights in-beded under the screen, but i have never seen mine blink...I wonder it they are not activated to respond for some reason. I have also seen my home, and menu buttons blink but it just seems at random on mine. I tried the facebook settings but still did not get any visuals with the home or menu buttons
 
Upvote 0
If you will notice in good light in the top left of the sprint logo, there are 2 tiny red and green lights in-beded under the screen, but i have never seen mine blink...I wonder it they are not activated to respond for some reason. I have also seen my home, and menu buttons blink but it just seems at random on mine. I tried the facebook settings but still did not get any visuals with the home or menu buttons

One of those is the proximity sensor and the other is the auto-dim sensor. I think it's pretty dumb to make a phone without an LED!
 
Upvote 0
dumb or not, the three soft keys act as notification just like on the other instincts. remember this was even touted as the "instinct q". so it makes sense that some things work the same even though it's running android. but on mine at least if you have any other notification services turned on, it bypasses the soft key lights.

I can't get it to make the soft keys light up for anything. Even if I turn off Handcents notification, and keep the default messaging notifications on.

You reckon I have to completely uninstall Handcent?
 
Upvote 0
dumb or not, the three soft keys act as notification just like on the other instincts. remember this was even touted as the "instinct q". so it makes sense that some things work the same even though it's running android. but on mine at least if you have any other notification services turned on, it bypasses the soft key lights.

Can you please explain this further to me? I just bought this phone 2 days ago (came from Touch Pro) & the lack of a notification of missed activity (without physically turning on the phone or hearing something) is DRIVING ME CRAZY! Any help would bve appreciated. Thank you in advance.
 
Upvote 0
Changing the state of the LEDs in android is trivial, you echo "0" or "1" to /sys/class/leds/button-backlight/brightness and it will turn it on or off.

You can test by booting into root mode and running "echo 1 > /sys/class/leds/button-backlight/brightness" - should turn on front lights. Then "echo 0 > /sys/class/leds/button-backlight/brightness" will turn it off.

The problem is doing this seems to require root (or actually 'system') rights:
ls -l /sys/class/leds/button-backlight/brightness
-rw-r--r-- system system 4096 2010-01-07 17:01 brightness

I think Android has a service running that manages it for the low-level apps in the phone, but for us mere mortals I'm not sure how to get to it barring rooting.

If you've rooted your phone, you could probably just write an app that listens for SMS's and writes to that file to control flashing the LEDs.
 
Upvote 0
At the risk of shameless self promotion - I had exactly this problem with my HTC Magic (weedy little LEDs were frankly no good to anyone), and so I wrote an app to deal with it without rooting the phone.

Details at my site (Pete's Development Stuff - FlashNotify), or just search the market for "FlashNotify". It's free and everything, though feel free to donate ;)

Hope this helps someone out...

Pete
 
Upvote 0
At the risk of shameless self promotion - I had exactly this problem with my HTC Magic (weedy little LEDs were frankly no good to anyone), and so I wrote an app to deal with it without rooting the phone.

Details at my site (Pete's Development Stuff - FlashNotify), or just search the market for "FlashNotify". It's free and everything, though feel free to donate ;)

Hope this helps someone out...

Pete


thanks pete! just tried it out and works great.
 
Upvote 0
Just downloaded...works for me. Would be nice to have the option to just light up the home/menu/back keys versus the whole screen, but I'll take it.

+1, but we'll take what we can get. :) hehe... still trying it out, but works pretty well.

thanks for the app pete.

a couple of questions:

1) i did notice that for missed calls, if you clear it from notifications, that sometimes it still notifies you until you go into your dialer... or was i not patient enough?

2) do we have to start this app manually everytime we reboot? or does it autoload?
 
Upvote 0

BEST TECH IN 2023

We've been tracking upcoming products and ranking the best tech since 2007. Thanks for trusting our opinion: we get rewarded through affiliate links that earn us a commission and we invite you to learn more about us.

Smartphones