Moto E4 Plus LED troubleshooting with Moto Display - Moto E4 Plus Questions & Answers

Is any way to make both options compatible? Since I updated the phone notification LED doesn't activate, now it only work when charging or low battery. Any ideas? I'm thinking about installing the default ROM, but I'm not sure at all, also I had an idea, I know the updates cannot be downgraded but I was thinking about that I install the older patch and the system recognize it as a new update,, it would be like when you install and older version of an app and the Sistem recognize it as a newer version, I think it could possible.

# Enable Charging LED
echo "battery-charging" > /sys/class/leds/red/trigger
# Disable Charging LED
echo "none" > /sys/class/leds/red/trigger;

Francesco Franz said:
# Enable Charging LED
echo "battery-charging" > /sys/class/leds/red/trigger
# Disable Charging LED
echo "none" > /sys/class/leds/red/trigger;
Click to expand...
Click to collapse
I mean it works when charging but not when I receive a notification (Messenger, SMS, etc) because of the update (NMA26.42-97) before that, It was working perfectly fine with other notifications. I asked Motorola about that and the told me that it doesn't work cause of Moto Display. I need to disable it to make the LED work again with notifications. Any way to make them work together?

Dankius said:
Is any way to make both options compatible? Since I updated the phone notification LED doesn't activate, now it only work when charging or low battery. Any ideas? I'm thinking about installing the default ROM, but I'm not sure at all, also I had an idea, I know the updates cannot be downgraded but I was thinking about that I install the older patch and the system recognize it as a new update,, it would be like when you install and older version of an app and the Sistem recognize it as a newer version, I think it could possible.
Click to expand...
Click to collapse
I dont know if this could work as alternative for you if you didnt want to go through all that hassle of patching...
https://forum.xda-developers.com/android/apps-games/app-frontflash-notification-v1-6-t3734332

Solution of the notification light
I was just browsing youtube and I found a fix for this issue. You can check out this solution video here.
https://youtu.be/6HmQ_F_HKbI

Related

LED Notification for missed calls+texts?

Hi there, I was wondering if there was a registry hack or an app that could enable LED notifications for the HD7. I seem to remember being able to see it in version 7.0 on my HD7 but 7.5 Mango made it disappear.
Yeah, I need it too. With the lastest deepshining there is a led notification only for missed calls and only for few minutes, for SMS no luck. Isn't possible to modify the led behaviour? It would be great because HD7 has got a phisical led, so I think is only a software issue..
Strongly agree on this. There should be an update or an application that would customize the led notifications. I wanted to become a developer but I don't know where to start

[APP] LG Touch LED Notifications

Hello guys!
I've downloaded this app a few days ago and it's very usefull, here I share the info of Google Play:
[...] This application uses the touch LED buttons to show if there is any missed notifications by turning them on and off. It is enabled by default and will autostart on boot but has to be run once after installation to start the service [...]
More info and download Here
lean7 said:
Hello guys!
I've downloaded this app a few days ago and it's very usefull, here I share the info of Google Play:
[...] This application uses the touch LED buttons to show if there is any missed notifications by turning them on and off. It is enabled by default and will autostart on boot but has to be run once after installation to start the service [...]
More info and download Here
Click to expand...
Click to collapse
this work with zeus?
Yep, I've 6.31n and work good.
lean7 said:
Yep, I've 6.31n and work good.
Click to expand...
Click to collapse
doesn't work. just blink once, then off.. what's wrong?
---------------
maybe doesn't work with 6.31o..
Used it once, in february...its not this good
But does the job
Sent from my LG-P970 using Tapatalk
This app is known here. There already was a discussion with it.
From the app in Google play:
"We are aware of the issues with Optimus Black since the 2.3.4-update"
ciplukzz said:
doesn't work. just blink once, then off.. what's wrong?
---------------
maybe doesn't work with 6.31o..
Click to expand...
Click to collapse
You were right! It's not working now :S
Thankyou for sharing this app!
I've been checking out this program and it's source code. The problem seems to be some sort of power management that turns the leds off after about 2 seconds when the screen is off and the phone is on battery.
The kernel exports some files to /sys/bus/i2c/devices/2-001a/ that can be used to control the leds. One file in particular is led_onoff. I've found that while on battery, if I do "# echo 0 > led_onoff; echo 1 > led_onoff" from a console, it will reset the leds and turn them on before the system turns them off after about 2 seconds when on battery. Everything seems to work as expected while on charge.
I'm not sure how to troubleshoot too much further than that. It looks to be something either in the kernel or android system files but I'm not about to start cooking my own kernel just to check it out. It's probably also a bit beyond my whole understanding of the code.
But, I've been able to implement a fairly bad hack to get it working in the 'blink' mode. Basically it just adds in some code to reset the leds before starting the next cycle which is enough to get it going (same as the command above). It has the side effect of making all the leds flash for a split second when they come on and uses a timer to control the blink so the phone will constantly waking every few seconds to control the leds and I'm not sure how that will affect the battery. Also works best with a blink time of 2 seconds on obviously because power management turns them off after then anyway.
Download it below if you want to try it out:
http://www.mediafire.com/?ez9rxjr8od9gouc
If you have the old version installed you will need to remove it first as this has a different signature.
If you want the source my build directory is hosted here: http://www.mediafire.com/?hmx5wpbwx00c47l
brownowski said:
I've been checking out this program and it's source code. The problem seems to be some sort of power management that turns the leds off after about 2 seconds when the screen is off and the phone is on battery.
The kernel exports some files to /sys/bus/i2c/devices/2-001a/ that can be used to control the leds. One file in particular is led_onoff. I've found that while on battery, if I do "# echo 0 > led_onoff; echo 1 > led_onoff" from a console, it will reset the leds and turn them on before the system turns them off after about 2 seconds when on battery. Everything seems to work as expected while on charge.
I'm not sure how to troubleshoot too much further than that. It looks to be something either in the kernel or android system files but I'm not about to start cooking my own kernel just to check it out. It's probably also a bit beyond my whole understanding of the code.
But, I've been able to implement a fairly bad hack to get it working in the 'blink' mode. Basically it just adds in some code to reset the leds before starting the next cycle which is enough to get it going (same as the command above). It has the side effect of making all the leds flash for a split second when they come on and uses a timer to control the blink so the phone will constantly waking every few seconds to control the leds and I'm not sure how that will affect the battery. Also works best with a blink time of 2 seconds on obviously because power management turns them off after then anyway.
Download it below if you want to try it out (sorry for the format, can't post links yet - please remove the spaces):
Code:
www . mediafire . com / ?ez9rxjr8od9gouc
If you have the old version installed you will need to remove it first as this has a different signature.
Click to expand...
Click to collapse
Good aproach! Take into account that is normal that the kernel switch off leds on battery... think in the leds allways on... I have had some kernel-related atempts to correct this... but atm no luck.
Regards!
When the screen is off and the device is on battery it is doing some sort of polling every few seconds to check and reset the LEDs rather than just a trigger when the screen turns off and that is what makes the app not work.
I tried a few different ways to reset the LEDs but the only way that would work is to force them off by writing a 0 into led_onoff followed immediately by a 1 into led_onoff. It wasn't enough to just echo 1 > led_onoff, I had to do a 0 first. However, with power connected, just the echo 1 > led_onoff was all I needed.
As far as I could tell, the led_onoff seems to only part of the 970 device code. I'm guessing that the other devices don't have an issue because they don't have to activate the LEDs in that way.
One other thing I tried was removing all write privileges to those files after turning on the LEDs to see if the system was writing a value into them to turn them off. They were still turned off so I kind of figured it's something in the kernel itself manually resetting things.
this should be good if work in customs ROM...to notify us for new message and etc
have a problem
:laugh:
look like some problems
can not running on V20F ver
the led just flashing one time.
lean7 said:
You were right! It's not working now :S
Click to expand...
Click to collapse
anguszhou said:
:laugh:
look like some problems
can not running on V20F ver
the led just flashing one time.
Click to expand...
Click to collapse
read the first page pls. it isnt working with 2.3.4 we know that.
anguszhou said:
:laugh:
look like some problems
can not running on V20F ver
the led just flashing one time.
Click to expand...
Click to collapse
Did you try the one I posted in post 9? http://forum.xda-developers.com/showpost.php?p=28571222&postcount=9
It sort of works in blink mode (best with repeating non-fading pulse with a lit time of 2000ms).
I'm using it in Zeus v6.35 at the moment.
lean7 said:
Hello guys!
I've downloaded this app a few days ago and it's very usefull, here I share the info of Google Play:
[...] This application uses the touch LED buttons to show if there is any missed notifications by turning them on and off. It is enabled by default and will autostart on boot but has to be run once after installation to start the service [...]
More info and download Here
Click to expand...
Click to collapse
My only wish is that it was all 4 lights instead of just search, but who cares, in a month Ill probably prefer just search and be happy
Thanks for this find, I was desperate for it
brownowski said:
I've been checking out this program and it's source code. The problem seems to be some sort of power management that turns the leds off after about 2 seconds when the screen is off and the phone is on battery.
The kernel exports some files to /sys/bus/i2c/devices/2-001a/ that can be used to control the leds. One file in particular is led_onoff. I've found that while on battery, if I do "# echo 0 > led_onoff; echo 1 > led_onoff" from a console, it will reset the leds and turn them on before the system turns them off after about 2 seconds when on battery. Everything seems to work as expected while on charge.
I'm not sure how to troubleshoot too much further than that. It looks to be something either in the kernel or android system files but I'm not about to start cooking my own kernel just to check it out. It's probably also a bit beyond my whole understanding of the code.
But, I've been able to implement a fairly bad hack to get it working in the 'blink' mode. Basically it just adds in some code to reset the leds before starting the next cycle which is enough to get it going (same as the command above). It has the side effect of making all the leds flash for a split second when they come on and uses a timer to control the blink so the phone will constantly waking every few seconds to control the leds and I'm not sure how that will affect the battery. Also works best with a blink time of 2 seconds on obviously because power management turns them off after then anyway.
Download it below if you want to try it out:
http://www.mediafire.com/?ez9rxjr8od9gouc
If you have the old version installed you will need to remove it first as this has a different signature.
Click to expand...
Click to collapse
Still not working on 2.3.4
working on ics?
New version of LG Notifications
jn83 said:
Still not working on 2.3.4
Click to expand...
Click to collapse
Hi, please test the attached APK. For now I have worked exclusively on the mode "repeat fading pulse". Please unintall the application if you have it already installed.
I used it for 2 days now and it seems to work for me, so report bugs, but only for the mode repeat fading pulse if have problems. I will try to fix also the other modes, when I have time.
PS: of course all credits go to the original creator of Lg Notification application. I only try to fix this to work on Lg Optimus Black on Gingerbread.
Dan
danfizesan said:
Hi, please test the attached APK. For now I have worked exclusively on the mode "repeat fading pulse". Please unintall the application if you have it already installed.
I used it for 2 days now and it seems to work for me, so report bugs, but only for the mode repeat fading pulse if have problems. I will try to fix also the other modes, when I have time.
PS:
Dan
Click to expand...
Click to collapse
There is a problem with repeat fading pulse. It eats too much battery. Constant light it is much battery friendly.

Notification LED

Hi,
is there a possibility to change the notification-led settings? Like that the LED should shine instantly or blink so long till i unlock the phone?
Thanks...
(I´ve the One for 2 days now and want to install TrickDroid)
There's not much you can do with the led
And you should flash trickdroid
Hmm, but why? Is it not possible to change the kernel "a little bit" so you can config the led?
You can download a led app from Google play but you got to be rooted it doesn't work very well
There's also LightFlow, but apparently there's some serious compatibility issues with the One at the moment. Perhaps when there's an update.
so as of right now, there is no way to extend the duration of the flashing led notification without rooting? it really doesn't make sense that it would turn off after a few minutes. it seems obvious that it should remain blinking until you've viewed the notification...or is it just me? can this be done if the phone has been rooted?

Recently the screen in my N6 always turning on w/o doing nothing

Hi!
As i wrote, the screen just turning on without doing nothing.
I'm not touching...Only move it within my palms and the screen turnes on.
Anyone heard about that?
Your help would be appreciated.
Thank you!
It's called ambient display. Makes your screen turn on when the phone is moved after your screen turns off.
Basicly a replacement for the lack of a led light(talking non rooted non custom rom here)
OR.. it could also be an app, thats turning your screen on. there are many apps that do this, you should read your apps permissions.
Just turned off ambient display.
But...does it mean that now I wont get any notifications during phone at sleep?
Tnx!
Ambient display doesn't use much extra battery, it only illuminates the pixels its displaying and it keep the phone in a low power state.
It is your phone's stock visual notification system, so yes if you turn it off you won't get any visual notifications. If your phone is set to vibrate or make notification noises it will still do that. The phone does have an LED behind the speaker, so if you are rooted you can install something like lightflow to use your phone's LED for notifications instead/as well.
scryan said:
The phone does have an LED behind the speaker, so if you are rooted you can install something like lightflow to use your phone's LED for notifications instead/as well.
Click to expand...
Click to collapse
If you mentioned 'lightflow':
Yes, I am rooted and followed the tut for lightflow - But I still doesnt get LED notifications.
Any reasson why?
Tnx!
shabydog said:
If you mentioned 'lightflow':
Yes, I am rooted and followed the tut for lightflow - But I still doesnt get LED notifications.
Any reasson why?
Tnx!
Click to expand...
Click to collapse
I don't use light flow, but I have heard of many having issues using that app. what I use is s ROM that allows for colored notifications, then I set my colors within the ROMs options. BTW, pure nexus ROM.
simms22 said:
I don't use light flow, but I have heard of many having issues using that app. what I use is s ROM that allows for colored notifications, then I set my colors within the ROMs options. BTW, pure nexus ROM.
Click to expand...
Click to collapse
oh snap, I just realized this is the same guy who was posting in the lightflow tutorial thread and was told how to do it multiple times.
He does not have "run all commands as root" check in the settings, and insist its not an option. He just needs to go through the settings and enable that like the popup window when you first launch light flow tells you.
You gotta look through your settings man. I don't know what else to tell you, I don't use that app anymore but I have. And unless you go through all the options in the settings menu... The app isn't going to be able to write to the kernels file system to turn the light on.
Maybe I'll just flash the pure nexus ROM.
I just dont get how to use this App.
Tnx!
I don't want to sound mean but if you Cant figure an app out I don't think you should be flashing ROMs
shabydog said:
Maybe I'll just flash the pure nexus ROM.
I just dont get how to use this App.
Tnx!
Click to expand...
Click to collapse
You click settings.... Your looking for something to do with running commands as root.
Did you check under the "device settings and root" menu?
Does he even have the paid version of light flow?
holeindalip said:
Does he even have the paid version of light flow?
Click to expand...
Click to collapse
He said in another thread that he bought it... but that doesn't matter. I don't and I used it via the options I stated to have LED notification for basic stuff.
I have a question regarding ambient display. I know how it works and all that stuff, however, how many time the phone wakes up with the black/white screen? Because mine gets a notification, it shows it to me then without doing nothing it shows the notification again and again, every minute I guess for a long time. Is this normal?
Yes thats normal. Just like a notification LED will stay on, Ambient Display will show every now and again until you acknowledge the notification in case you missed it. Again, it uses almost no battery to do this, I have used the phone with it on and with it off and never really notice a difference.
holeindalip said:
I don't want to sound mean but if you Cant figure an app out I don't think you should be flashing ROMs
Click to expand...
Click to collapse
You will be surprisingly to hear that I do know well how to flash Roms...
scryan said:
You click settings.... Your looking for something to do with running commands as root.
Did you check under the "device settings and root" menu?
Click to expand...
Click to collapse
Reinstalled and after i gave the SU permission - I chose the following:
'Root mode' is on.
'Run every command as root' is on.
Let's see if it would work now.
Thanks!
Hi,
Letting u know that for some reasson i dono - it still just dont work.
Super wierd.

Enable Notification LED?

I've seen that it is possible to use the physical LED on the device for notifications if your device is rooted, but I have not had any success in getting it set up properly.
The closest I have gotten was an app called Moto LED Enabler, which worked at turning the led on when I got a notification, but it wouldn't turn back OFF when I cleared the notification.
I'm wondering if anyone has gotten this working perfectly and what app are you using?
Zarxrax said:
I've seen that it is possible to use the physical LED on the device for notifications if your device is rooted, but I have not had any success in getting it set up properly.
The closest I have gotten was an app called Moto LED Enabler, which worked at turning the led on when I got a notification, but it wouldn't turn back OFF when I cleared the notification.
I'm wondering if anyone has gotten this working perfectly and what app are you using?
Click to expand...
Click to collapse
Flash Notification works for me.
ttakacs said:
Flash Notification works for me.
Click to expand...
Click to collapse
I'm not trying to use the camera flash, but rather a little tiny light that's right next to it.
Zarxrax said:
I'm not trying to use the camera flash, but rather a little tiny light that's right next to it.
Click to expand...
Click to collapse
Why exactly ? Camera flash is perfect for this task
emcom said:
Why exactly ? Camera flash is perfect for this task
Click to expand...
Click to collapse
Camera flash is WAY too bright, in my opinion. It's the kind of thing that pretty much would force me to interact with the phone just to turn it off. While with the smaller led, I can just see that its on, but I don't have to do anything about it if I don't want to.
Moto LED enabler works fine for me... Are you rooted via magisk??
The app constantly asks for Superuser rights to turn the led on and off.. So, check if your SU app is having issues maybe..
abhi212b said:
Moto LED enabler works fine for me... Are you rooted via magisk??
The app constantly asks for Superuser rights to turn the led on and off.. So, check if your SU app is having issues maybe..
Click to expand...
Click to collapse
I'm trying it again, but behavior is same as before. Once it comes on, the only way I can make it turn off is by playing with the brightness control in the Moto Led Enabler app. I granted full access when it asked for root, doesn't seem to be any issue there. And its just doing weird stuff, like it suddenly turned on when I ended a phone call, despite no notification even popping up.
abhi212b said:
Moto LED enabler works fine for me... Are you rooted via magisk??
The app constantly asks for Superuser rights to turn the led on and off.. So, check if your SU app is having issues maybe..
Click to expand...
Click to collapse
It kinda works for a little time, and then it crashes. Constantly there's a message popping up saying that moto led enabler has stopepd working. What exactly do you do to make it work?
---edit---
To stop it from crashing every five minutes all I had to do was open the app and fiddle witht the brightness slider and voilá, working like a charm.

Categories

Resources