[Q] Notification light - Milestone XT720 General

Guys,
My girlfriend just got the XT720. I don't see ANY lights on this thing - power (when charging) or when a text comes in, nothing "flashes". You have to turn on the screen to see if any messages came through.
I've hunted for information and don't see anything telling me that there is actual visual notification on the phone. I carry a Nexus One and the trackball light flashes to tell you that you've missed something. There are 3 dots on the upper left corner of the XT720 just above the screen, and those "may" be lights, but I have no diagrams or information to tell me. If they are lights, they don't work.
Can anyone give me a quick piece of advice on this?
Cheers,
Mark.

No notification lights on this piece. Lol jus vibrate. Lol

easye420 said:
No notification lights on this piece. Lol jus vibrate. Lol
Click to expand...
Click to collapse
I was a little disappointed to find out that there were no notifications lights. Coming from a Blackberry I'm used to the red blinky light for notifications. In fact, I had everything on silent except incoming calls - the light was enough to tell me (even from across the room) if there was any notifications. I know you can set the 4 touch sensitive buttons at the bottom to blink...but it's infrequent and they tend to stay off if a notification comes in.
Would it be possible to write a script to make use of the 3 media LEDs on the side for notifications (emails, SMS, missed calls, Facebooks, etc)? I have little to no programming knowledge so I certainly can't - nor do I know if it's even possible.

Hey easye420, thanks for the reply...althought it's not what I was hoping for! LOL I find it difficult to believe there's no blinking light of sorts on this thing.
Riley600, she too is coming from a blackberry and that's her gripe about it. I've been trying to get her onto an android for a while and this was the best device her wireless company offered. I like your idea about a script to do this and think many people would love to have it....especially ex-blackberry users! I'm not a programmer though so can't help in the design I'm afraid.
Thanks also for the note on the back buttons flashing. I'll see if there's a good app to make those blink....just some visual notification that you've missed something. I'd think that would be a standard feature of any of today's phones.
Cheers,
Mark.

mslatter said:
Hey easye420, thanks for the reply...althought it's not what I was hoping for! LOL I find it difficult to believe there's no blinking light of sorts on this thing.
Riley600, she too is coming from a blackberry and that's her gripe about it. I've been trying to get her onto an android for a while and this was the best device her wireless company offered. I like your idea about a script to do this and think many people would love to have it....especially ex-blackberry users! I'm not a programmer though so can't help in the design I'm afraid.
Thanks also for the note on the back buttons flashing. I'll see if there's a good app to make those blink....just some visual notification that you've missed something. I'd think that would be a standard feature of any of today's phones.
Cheers,
Mark.
Click to expand...
Click to collapse
No app needed.
Settings --> Sound & Display Settings --> check Visual Notification (and Periodic Notification if you want to get reoccurring notifications).

I forgot bout that. When i had it enabled if i turned to screen on when it was blinkin they would either stay off or stay on and it would piss me off.

...
deleted

easye420 said:
I forgot bout that. When i had it enabled if i turned to screen on when it was blinkin they would either stay off or stay on and it would piss me off.
Click to expand...
Click to collapse
that's a known Motobug. We've reported Moto regarding this issue long ago but till now, no fix is applied.

Thanks for the feedback from everyone. Now I know where this issues stands and what my options are.
Cheers.

I am still curious though, does anyone know if making a script to use the media LED lights for notifications is possible?

Riley600 said:
I am still curious though, does anyone know if making a script to use the media LED lights for notifications is possible?
Click to expand...
Click to collapse
Hey Riley600, sorry mate I don't know the answer to that. I would assume it's possible, but not sure how difficult it would be.... maybe someone else knows?

Yes it is possible.
as you know, the xt720 doesn't have multicolor led (other phones has one, which can basically light in 3 different colors).
Anyway, i was playing some times ago and discovered, that the multimedia leds, corresponds to red, green and blue colors
just find the notes i have made:
Code:
/sys# echo 1 > ./bus/platform/devices/notification-led/leds/blue/brightness
camcorder
/sys# echo 1 > ./bus/platform/devices/notification-led/leds/green/brightness
camera
/sys# echo 1 > ./bus/platform/devices/notification-led/leds/red/brightness
gallery
sys/./devices/platform/button-backlight/leds/button-backlight/brightness
four buttons
/sys# echo 0 >./devices/platform/af-led/leds/af-led/brightness
af led
so instead of possible, it seems to be easy (rooted phone assumed)
i have seen several apps, which can deal with notifications (market)
this can be used for the code to deal when to trigger notification
and i use adjbrightness, which works in similar way.
this can be used for the code to trigger the leds
here is an information link to adj brightness.
http://forum.xda-developers.com/showthread.php?t=731032
edit: actually it can be even easier, but it depends on the /sys entries of a phone with dedicated led. but the idea is the same

peshovec said:
Yes it is possible.
as you know, the xt720 doesn't have multicolor led (other phones has one, which can basically light in 3 different colors).
Anyway, i was playing some times ago and discovered, that the multimedia leds, corresponds to red, green and blue colors
so instead of possible, it seems to be easy (rooted phone assumed)
i have seen several apps, which can deal with notifications (market)
this can be used for the code to deal when to trigger notification
and i use adjbrightness, which works in similar way.
this can be used for the code to trigger the leds
here is an information link to adj brightness.
http://forum.xda-developers.com/showthread.php?t=731032
edit: actually it can be even easier, but it depends on the /sys entries of a phone with dedicated led. but the idea is the same
Click to expand...
Click to collapse
That's great to know that it should be easy. But I'm going to be honest in saying that I'm not an Android expert.
If you would be so kind to give me a set of easy to follow steps (my phone is rooted, I know how to use adb, etc) on how to set something up to blink the media LEDs for notification, your coffees next week will be on me. I don't know how to (or have the ability to) unpack APKs, edit them and repack them. If you can provide a easy to implement solution (some basic editing of an existing program or an APK for me to use), you will not only be my hero - you will also have some more money in your pocket. It sounds like you might be a couple other people's hero in this thread as well.
Thanks!

it is not about money
it is not about coffee (there is just a new espresso machine in the office
it is about time...
so i will go deeper in the very possible and very easy way (i have edited my post above).
i saw some applications on the market , which can do the job (e.g. deal with the led for some events aka notifications ).
the easiest way is to find a phone, when they worked as expected.
then on this phone, to find the corresponding entries in the /sys folder, which deals with the leds, and just try some symbolic links to our leds
in the easiest way it will be as simple as:
ln -s /sys/bus/platform/devices/notification-led/leds/green/brightness /sys/what_ever_path_is_needed
of course there will be some drawback (e.g. not fully customizable), but it will work.
this method will not require nothing else...
anyway more appropriate way (more time consuming) will be to modify some almost do the job application, to do it for our phones. (actually, to submit patches to the developers regarding support of our phones).
this is the right way (in my opinion). the prerequisites:
1. application which do the job for some phone
2. open source
then:
3. spent some time in code
4. test the patch
5. send it to mainstream
i will be glad to do it for fun, will appreciate help regarding step 1 and 2

peshovec said:
it is not about money
it is not about coffee (there is just a new espresso machine in the office
it is about time...
so i will go deeper in the very possible and very easy way (i have edited my post above).
i saw some applications on the market , which can do the job (e.g. deal with the led for some events aka notifications ).
the easiest way is to find a phone, when they worked as expected.
then on this phone, to find the corresponding entries in the /sys folder, which deals with the leds, and just try some symbolic links to our leds
in the easiest way it will be as simple as:
ln -s /sys/bus/platform/devices/notification-led/leds/green/brightness /sys/what_ever_path_is_needed
of course there will be some drawback (e.g. not fully customizable), but it will work.
this method will not require nothing else...
anyway more appropriate way (more time consuming) will be to modify some almost do the job application, to do it for our phones. (actually, to submit patches to the developers regarding support of our phones).
this is the right way (in my opinion). the prerequisites:
1. application which do the job for some phone
2. open source
then:
3. spent some time in code
4. test the patch
5. send it to mainstream
i will be glad to do it for fun, will appreciate help regarding step 1 and 2
Click to expand...
Click to collapse
I'll be happy to help out where I can - but as I said earlier, my knowledge is limited.
in the easiest way it will be as simple as:
ln -s /sys/bus/platform/devices/notification-led/leds/green/brightness /sys/what_ever_path_is_needed
of course there will be some drawback (e.g. not fully customizable), but it will work.
Click to expand...
Click to collapse
I have a basic idea of what you're saying here. I used Root Explorer to navigate to /sys/bus/platform/devices/notification-led. It appears as a empty file, though. I'm not sure if the ln -s is a command or what. Would you be able to elaborate a little?
And this method would obviously not allow for the setting of a custom blinking interval, etc. Being able to set something like that would be awesome - but right now I'll take whatever I can get.

Or would it be possible to change the settings for the key backlight blink to one of the media LEDs? Perhaps by moving or changing one of the system files?

I use "Missed Reminder" for calls, emails and sms. Works fine.

ralfbonne said:
I use "Missed Reminder" for calls, emails and sms. Works fine.
Click to expand...
Click to collapse
This doesn't work for the LEDs, though - does it?

Not the LEDs for camera etc. But for the LEDs of the Home-key ...

Solution: LED me know
mslatter said:
Guys,
My girlfriend just got the XT720. I don't see ANY lights on this thing - power (when charging) or when a text comes in, nothing "flashes". You have to turn on the screen to see if any messages came through.
I've hunted for information and don't see anything telling me that there is actual visual notification on the phone. I carry a Nexus One and the trackball light flashes to tell you that you've missed something. There are 3 dots on the upper left corner of the XT720 just above the screen, and those "may" be lights, but I have no diagrams or information to tell me. If they are lights, they don't work.
Can anyone give me a quick piece of advice on this?
Cheers,
Mark.
Click to expand...
Click to collapse
Solution found!
An app called 'LED me know' by p0w4p0ty (http://forum.xda-developers.com/showthread.php?t=837057) is able to use the 3 media lights to signal notifications. So far I've found it works for Gmail, SMS and missed calls - but I believe it supports other notifications as well. At this moment, it doesn't seem to work for Gtalk notifications. It's highly customizable (you can set each one of the 3 media lights to blink [corresponding to red, green and blue] or you can set them to blink in combinations [2 lights for cyan and 3 lights for white]). I should mention that the phone needs to be rooted in order for this to work with the XT720.
I'm very pleased with it so far and it's free (in fact I'm looking across the room right now and see that I have a SMS).

Related

permanent notification light?

Is there a way to keep the notification light on the dpad (where the light goes around counterclockwise) on permanently without it only activating on things such as missed calls, new emails, etc.?
emks342 said:
Is there a way to keep the notification light on the dpad (where the light goes around counterclockwise) on permanently without it only activating on things such as missed calls, new emails, etc.?
Click to expand...
Click to collapse
jw why would you want some thing like that? it will waste battery on a device that already has battery issues.
just trying to mess around with the settings and such. I don't really have many issues with the battery since I don't use it heavily. anyone know how?
The notification light has one purpose - to notify you that something happened ;-) Therefore I can't think of a reason why would one want it on permanently.
Anyway, I think this could be easily done by an experienced programmer (which unfortunately I am not). The question is if anyone would want to do it.
EDIT: My opinion is - don't touch anything that works well ;-) If you don't have battery issues you should be grateful. Let sleeping dogs lie ;-)
ahah yes i know. I'm just trying to see if theres like a setting in the reg or something where I can maybe change the way it blinks, when it blinks, duration (aside from the sounds/notifications tab), etc. Could also help if phone was in the dark, the LED lights would be useful..
anyone got some ideas?
any theories out theree? x_x
I'm interested to, because if we want to have a notification of operator signal, its a good idea.

Notification LED...

First, I know there is NO notification LED on the Charge. I'm sure some of you are tired of requests and want to yell at me, and others want to say I told you so, there is a notification LED.
I want t see if there is an app that would allow the bottom hardware buttons to function as the notification LED. Similar to how the HTC Touch Pro 1 notifications worked (pulsing for e-mail, fade in/out for sms, etc...).
Any ideas?
whiteblazer01 said:
First, I know there is NO notification LED on the Charge. I'm sure some of you are tired of requests and want to yell at me, and others want to say I told you so, there is a notification LED.
I want t see if there is an app that would allow the bottom hardware buttons to function as the notification LED. Similar to how the HTC Touch Pro 1 notifications worked (pulsing for e-mail, fade in/out for sms, etc...).
Any ideas?
Click to expand...
Click to collapse
NoLED. There's a workaround to get only the backlit keys working.
whiteblazer01 said:
First, I know there is NO notification LED on the Charge. I'm sure some of you are tired of requests and want to yell at me, and others want to say I told you so, there is a notification LED.
I want t see if there is an app that would allow the bottom hardware buttons to function as the notification LED. Similar to how the HTC Touch Pro 1 notifications worked (pulsing for e-mail, fade in/out for sms, etc...).
Any ideas?
Click to expand...
Click to collapse
there is a way to enable BLN (backlight notifications) but it must be done through some custom kernel work, which afaik right now is not possible since we don't have kernel source code to work with
aznxk3vi17 said:
NoLED. There's a workaround to get only the backlit keys working.
Click to expand...
Click to collapse
Yea, I forgot to mention in my original post I've tried noLED. It worked fine except the whole power button thing was annoying. I had to turn the screen "on" with the home button (even though technically the screen is already on. The app said the power button feature is buggy). Again, this just goes to personal preference, and some people may not understand why I have trouble when it works for them, but I have my own preferences as that's just me. I don't like the screen bright at night, so I changed the icon colors, then I couldn't see the icons well during the day, so I had to change them back. I don't like that the icons flash around the screen (even though that's to get my attention - hence the whole purpose of the app), but it didn't completely suit my needs. It is a good app, and I'll continue to use it (I'll have to reinstall it), but my main problem is I couldn't configure it to show Google Voice notifications. I don't use sms, I only use Google Voice, and this didn't work as well. Same with the puzzle lockscreen; it doesn't show Google Voice notifications.
If you monitor google voice (in settings) it does show google voice notifications because I do it. The little google voice pops up.
Sent from my SCH-I510 using XDA App
anoninja118 said:
there is a way to enable BLN (backlight notifications) but it must be done through some custom kernel work, which afaik right now is not possible since we don't have kernel source code to work with
Click to expand...
Click to collapse
Not completely true... We have the kernel source for Froyo. We (TeamGummyCharged) worked on BLN's for the charge but failed on first try.. The BLN also requires a binary for the lights one that is not compatible with the Charge.. Maybe after 2.0 is released and we have more time we will pick it up again by reaching out to the original dev for that project but at the moment it is shelved.
kejar31 said:
Not completely true... We have the kernel source for Froyo. We (TeamGummyCharged) worked on BLN's for the charge but failed on first try.. The BLN also requires a binary for the lights one that is not compatible with the Charge.. Maybe after 2.0 is released and we have more time we will pick it up again by reaching out to the original dev for that project but at the moment it is shelved.
Click to expand...
Click to collapse
nice, good to know you guys can work on it... I personally don't see a use for it as the hardkey lights don't seem bright enough, though it'd be nice as an option (I'm coming from a Fascinate where they were bright and actually useful lol)

Just switched from Blackberry - Please help me to like WP7

Earlier this week, I received a HD7S on non-Mango to replace my Blackberry Torch.
While I like the bigger, better screen of the HD7S and the variety of WP apps (compared to RIM's selection at least), I am not sure, if the WP7 is really suitable for me (yet).
My intention is to use that phone mainly for business purposes.
Perhaps, someone can give me some input on the following items:
How to enable LED notification (email received, etc.)
How to access certain functions quickly rather than having to unlock the phone, finding the setting, etc etc etc (example: mute/unmute, change phone to silent, etc.)
How to increase time-out past 5 minutes max (very cumbersome/dangerous when on call in the car and having to mute/unmute)
Can I setup custom tiles (to bundle certain apps into one tile)?
How to customize notifications per email account (individual ring tone and vibrate)
How to reassign buttons to other functions
Please, I am not a Blackberry fan boy but I really want to like WP7 as I, frankly, have no other choice as this phone has been given to me by my employer.
Any input will be highly appreciated.
BTW: I have tried that force-Mango update for hours and countless times without any luck yet; maybe some of the points above will remedy with Mango?
Thank you!
MrTW said:
Earlier this week, I received a HD7S on non-Mango to replace my Blackberry Torch.
While I like the bigger, better screen of the HD7S and the variety of WP apps (compared to RIM's selection at least), I am not sure, if the WP7 is really suitable for me (yet).
My intention is to use that phone mainly for business purposes.
Perhaps, someone can give me some input on the following items:
How to enable LED notification (email received, etc.)
How to access certain functions quickly rather than having to unlock the phone, finding the setting, etc etc etc (example: mute/unmute, change phone to silent, etc.)
How to increase time-out past 5 minutes max (very cumbersome/dangerous when on call in the car and having to mute/unmute)
Can I setup custom tiles (to bundle certain apps into one tile)?
How to customize notifications per email account (individual ring tone and vibrate)
How to reassign buttons to other functions
Please, I am not a Blackberry fan boy but I really want to like WP7 as I, frankly, have no other choice as this phone has been given to me by my employer.
Any input will be highly appreciated.
BTW: I have tried that force-Mango update for hours and countless times without any luck yet; maybe some of the points above will remedy with Mango?
Thank you!
Click to expand...
Click to collapse
1. I'm not sure about the HD7S, but the Samsung Focus doesn't have a LED. If the HD7S does, it might be hackable but I can't provide any information about that.
2. There currently isn't any way to change your phone to silent silent, but you can use the volume down button to change your phone to vibrate. I'm also not sure what "other" settings you are talking about.
3. I assume you're talking about the screen, there is probably a registry hack somewhere. A quick search came up with this.
4. I remember reading somewhere about folders, but I can't seem to find it at this moment. I'm also not sure if it would bundle all the live tiles into one.
5. Also not possible on the Focus as of right now.
Sorry I couldn't be much of help, I hope this steers you in the right direction and I hope you fall in love with your new Windows Phone!
Diablosblizz said:
1. I'm not sure about the HD7S, but the Samsung Focus doesn't have a LED. If the HD7S does, it might be hackable but I can't provide any information about that.
Click to expand...
Click to collapse
There is a LED, which turns red once the battery needs to be charged. I would assume that this LED could be used for other purposes?
2. There currently isn't any way to change your phone to silent silent, but you can use the volume down button to change your phone to vibrate. I'm also not sure what "other" settings you are talking about.
Click to expand...
Click to collapse
I thought that the volume buttons might be an alternative to switch to silent but was hoping for a quicker way.
3. I assume you're talking about the screen, there is probably a registry hack somewhere. A quick search came up with this.
Click to expand...
Click to collapse
Thank you!
4. I remember reading somewhere about folders, but I can't seem to find it at this moment. I'm also not sure if it would bundle all the live tiles into one.
Click to expand...
Click to collapse
I will continue to search as well - thanks.
5. Also not possible on the Focus as of right now.
Click to expand...
Click to collapse
Hmm, strange as this would appear to be a standard function? Maybe possible with Mango?
Sorry I couldn't be much of help, I hope this steers you in the right direction and I hope you fall in love with your new Windows Phone!
Click to expand...
Click to collapse
Thanks again - definitely a starting point. The phone is much more fun than the BB; hopefully Mango or future releases will make it more practical for business purposes as well.
MrTW said:
How to enable LED notification (email received, etc.)
Click to expand...
Click to collapse
My HTC Mozart has a green/red LED, and with Mango it flashes green when you have a missed call or SMS message. As far as I know it doesn't work with other alerts such as toasts; definietly doesn't do anything for new emails.
Microsoft are taking feature requests online, so you can vote for this feature here:
http://windowsphone.uservoice.com/f...tification-for-missed-calls-email-s?ref=title
MrTW said:
How to access certain functions quickly rather than having to unlock the phone, finding the setting, etc etc etc (example: mute/unmute, change phone to silent, etc.)
Click to expand...
Click to collapse
You can pin the settings tile to the homescreen. Mute can be toggled by pressing either volume rocker, then in the top menu touch the corner that says "ring and vibrate". It'll then become "vibrate" and the icon will change, indicating the phone is on silent.
MrTW said:
How to increase time-out past 5 minutes max (very cumbersome/dangerous when on call in the car and having to mute/unmute)
Click to expand...
Click to collapse
No official way; seems there's a registry hack?
MrTW said:
Can I setup custom tiles (to bundle certain apps into one tile)?
Click to expand...
Click to collapse
Sadly not possible. See my rant about it here:
http://forum.xda-developers.com/showthread.php?t=1191082
Vote for it as a feature here:
http://windowsphone.uservoice.com/f...tegories-folders-for-installed-apps?ref=title
MrTW said:
How to customize notifications per email account (individual ring tone and vibrate)
Click to expand...
Click to collapse
Not currently possible. Vote for this feature here:
http://windowsphone.uservoice.com/f...s-for-sms-mms-email-notifications-e?ref=title
MrTW said:
How to reassign buttons to other functions
Click to expand...
Click to collapse
Which buttons do you mean? If you mean hardware, then sorry no possible to customise them.
Thank you very much for the infos!
Which registry editor is recommended for Mango on a HD7S?

[Q] Change color of LED notifications

Hi,
I'm trying to set up my phone to be able to change the color of my led notifications depending on the event (or at least, get a solid light instead of the flashing green).
I've tried to google it, and search this forum as well, but every thread i've found seemed to be before we were able to S-OFF (and thus, if i understand right, permanently root our devices), so I thought that maybe the situation has changed...
My phone is quite new, and not rooted yet, since i don't seem to be needing anything requiring root, but would rooting it let me use other colors for my notifications ?
I really don't understand why HTC doesn't make more use of its led system, I've had both HTC Magic and Desire, and it's the first time I have this much trouble for my led notifications color (though i had to root my desire right away, to get rid of the bloated Orange rom, so it might have been the same thing)
Thanks to everyone who will be able to bring me a little... light on the subject
Two things that you can do.
1. Root... Cause its Awsome and you always have more options with it.
2. Install an a called Yala stands for yet another led ap
You could also try android assistant the allows you to mess with led lights. However requires root access for most of its functions (not sure if this is one of them)
I am rooted and even that does not give you more led colors. I simply use noled now. Uses the screen to notify you in what notification you have. Good app for what it is and has sleep mode so that the wife won't kill me lol....
https://market.android.com/details?...lt#?t=W251bGwsMSwxLDEsImNvbS5sZWQubm90aWZ5Il0.
Bear in mind the only colours you'll get on the Sensation are green and orange.
kpjimmy said:
I am rooted and even that does not give you more led colors. I simply use noled now. Uses the screen to notify you in what notification you have. Good app for what it is and has sleep mode so that the wife won't kill me lol...
Click to expand...
Click to collapse
Thanks a lot for this, i've been using this app for a day or two now, and it is just perfect. I was afraid it would be battery consuming, but the use of the proximity sensor to turn off notifications is an awesome feature. It was really the only thing my sensation lacked, and it really feels perfect now.
the_scotsman said:
Bear in mind the only colours you'll get on the Sensation are green and orange.
Click to expand...
Click to collapse
Thanks for the info, it's a weird policy though, you would think that a 450€ phone would include a quality led for notifications... Especially since older models like the magic or the desire did.
rddocke said:
Two things that you can do.
1. Root... Cause its Awsome and you always have more options with it.
Click to expand...
Click to collapse
I do intend to root, if only to mess a little bit with roms using rom manager, which is always fun (and from my experiences with the desire, the community here have the most awesome roms available), but as I said i am content with my device right now, and since it is still quite new, I'd like to keep that "working out of the box" feeling as long as possible.
the_scotsman said:
Bear in mind the only colours you'll get on the Sensation are green and orange.
Click to expand...
Click to collapse
I believe it is the same LED as the previous HTC phones the colors are just a Hex decimal for the colors combos just like the missed call apk provided.
Azrielem said:
Thanks a lot for this, i've been using this app for a day or two now, and it is just perfect. I was afraid it would be battery consuming, but the use of the proximity sensor to turn off notifications is an awesome feature. It was really the only thing my sensation lacked, and it really feels perfect now.
Click to expand...
Click to collapse
No probs. Also a fyi, you can download a few themes for those icons. I currently use big spender. There are different sizes due to your preference. I currently use the 64x64 one attached, but you can use whichever you want.
To use the theme, download and extract the theme. If your SD card has the NoLed folder, just drag/paste the folder and its contents into the theme folder IIRC. Go to the NoLED app and pic the theme, go to the colors and edit all the notification icons you use to white and hit apply. These icons are already in color so no need to add any.

LED, where is it?

can't find the LED notification light. it won't come on while charging or anything... is there a setting for this? the only setting i find is for pulsing, but that won't do much good if the thing doesn't even come on. is there a setting i'm missing?
VR32 said:
can't find the LED notification light. it won't come on while charging or anything... is there a setting for this? the only setting i find is for pulsing, but that won't do much good if the thing doesn't even come on. is there a setting i'm missing?
Click to expand...
Click to collapse
Settings > Notifications > Gear Icon > Pulse notification light.
I think the default setting is on. The blue color (which I think is default) is harder to see than other colors, at least for me. I was able to see it better when changing it to red or green for a given app.
That being said, the fourth small bug which I've noticed is (at least for the few apps I've tried) if you disable sound for a given notification, neither ambient display nor the LED will work for that given notification. I'm unsure if that is intended behavior or not.
How do you change the colours for certain apps. I hoped the led would have been brighter and covered by the glass so it never needs cleaning.
Thanks.
Mcyates said:
How do you change the colours for certain apps. I hoped the led would have been brighter and covered by the glass so it never needs cleaning.
Thanks.
Click to expand...
Click to collapse
It either has to be baked into the app or you'll have to use a third party app (which may or may not require root).
my pulse notification setting is on. i have an email, a text, and i'm charging and there is no LED anywhere to be found. is there another way to test it? maybe my unit is defective.
VR32 said:
my pulse notification setting is on. i have an email, a text, and i'm charging and there is no LED anywhere to be found. is there another way to test it? maybe my unit is defective.
Click to expand...
Click to collapse
Are you looking VERY carefully at the left corner of the earpiece speaker grille (where the LED is located)? I thought mine was defective too until I saw how faint and small it was.
i have a text, on the charger, and i'm staring where you say but nothing. on chat support with google right now. i think mine may be defective but i'll know more in a few...
The LED is nothing special. It will flash for me every once and awhile if I have an Allo message, and if I don't read the message, it will flash as soon as I lock the phone - I did this several times just to get a good look at it. The LED is directly behind the cloth speaker cover in the earpiece. It looks like ****. You can easily identify each red, green, and blue LED when they are trying to display a white color. It doesn't even look white at a distance - you can easily see red, green, and blue. And if the phone is laying flat on a table, you can BARELY even see it. Surely it will not grab your attention unless the room is pitch black. Don't know if they thought it would be cool to do this, but it looks terrible imo.
i didn't finish the tech support chat cus i had to get back to work, but eventually the LED did show for an instant after i got an email.
it showed for an instant, and gone. i waited for it to show again and w/in 20 or 30 secs it did not show. this is what i call a useless feature. makes no sense. why is it even there?
there are so many things about this phone i don't get, and these are not bugs. i guess this is what happens when you smooth everything out for the mainstream or Apple crowd. i'm returning the phone. nice phone, but not for me at this price.
Lightflow does a good job enhancing the LED. Even without root, I now have a charging indicator and fully charged green LED. You can customize other apps too.
With the exception of having used the app for a long time, I do not know the dev, nor have any interest in his/her ventures.
I am linking the paid version as I am a strong beliver in supporting devs that turn out useful apps. There is a free version also.
https://play.google.com/store/apps/details?id=com.rageconsulting.android.lightflow
Enjoy..
Edit: There is another app, called Light Manager, that I have previously tested. In the end, I found that Lightflow is the most flexible and useful for me.
snovvman said:
Lightflow does a good job enhancing the LED. Even without root, I now have a charging indicator and fully charged green LED. You can customize other apps too.
With the exception of having used the app for a long time, I do not know the dev, nor have any interest in his/her ventures.
I am linking the paid version as I am a strong beliver in supporting devs that turn out useful apps. There is a free version also.
https://play.google.com/store/apps/details?id=com.rageconsulting.android.lightflow
Enjoy..
Edit: There is another app, called Light Manager, that I have previously tested. In the end, I found that Lightflow is the most flexible and useful for me.
Click to expand...
Click to collapse
What do you like better about LightFlow out of curiosity? I have the paid version of LightFlow as well but find myself using Light Manager.
Thanks
RoccoN4 said:
What do you like better about LightFlow out of curiosity? I have the paid version of LightFlow as well but find myself using Light Manager.
Thanks
Click to expand...
Click to collapse
Lightflow has more features. It takes more work/tweaking, but I can do more with it. For example, I use Lightflow to also control ringtones for some apps, as well as reminder tones. You can also control vibrate/volume characteristics. Light Manager does not offer that.
snovvman said:
Lightflow has more features. It takes more work/tweaking, but I can do more with it. For example, I use Lightflow to also control ringtones for some apps, as well as reminder tones. You can also control vibrate/volume characteristics. Light Manager does not offer that.
Click to expand...
Click to collapse
May give it another try. if I remember correctly, I didn't like the persistent notification that is always there.
snovvman said:
Lightflow has more features. It takes more work/tweaking, but I can do more with it. For example, I use Lightflow to also control ringtones for some apps, as well as reminder tones. You can also control vibrate/volume characteristics. Light Manager does not offer that.
Click to expand...
Click to collapse
I read somewhere that Lightflow was causing wakelocks on the Pixel and users didn't have the problem using Light Manager. Any confirmation on this?
Sent from my Nexus 7 using XDA-Developers mobile app
chrisinsocalif said:
I read somewhere that Lightflow was causing wakelocks on the Pixel and users didn't have the problem using Light Manager. Any confirmation on this?
Sent from my Nexus 7 using XDA-Developers mobile app
Click to expand...
Click to collapse
I am running LF on my PXL with no wakelock issues. Battery life is great.
I wish they would put the LED from the Galaxy nexus on the new phones. It had an awesome LED. Theres plenty of space for it on the button.
Been using LF for years. Great developer.
I use light manager pro myself. Just got the pixel yesterday

Categories

Resources