Flashlight without root - G3 Q&A, Help & Troubleshooting

Hey everyone !
I just got g3 few days ago and really enjoying the phone (5.0 onboard and its solid).
Noticed there is no flashlight widget or anything preinstalled. I guess it was discussed many times before but I couldn't find any info.
Right now using TeslaLed but I wonder, Can dual led flash get damaged or loose some of its performance(brightness when using camera) over time ?
LG didn't included flashlight widget for a reason. i was expecting them to add it with 5.0. Even nexus4 finally got system level flashlight app on 5.0 nu our g3's did not. Maybe LG is afraid of overburning the leds ?
With TeslaLed, the light is very bright and natural. Much more pleasant than my note2 led was. I am a bit afraid of using tho

I'm pretty sure it has a flashlight app built in. At least the US carrier version does. No need for root or third party app.
Have a great day! from my LG G3

Can You maybe post a screenshot of it ?
I can't seem to find it

Well I may be incorrect. I assumed it was built in. I am rooted and I reassigned the volume quick buttons and when I press volume up with the screen locked it turns on the light. I was assuming it was just activating a built in flashlight but it is a setting using the G3Tweekbox. The only reason I thought it was a built in flashlight option is because normally you would need some third party app to initiate this with this system it did not need that, it simply just accesses the light directly. I just spent 20 minutes looking through the whole device and root folders trying to find it then realized it was an error on my side.
Have a great day! from my LG G3

Just install Power Toggles and add flashlight toggle to your screen.

thanks

Download QuickTorch https://play.google.com/store/apps/details?id=com.yoavst.quicktorch&hl=en , It can be used if You have circle case , it has widget that fires up led light just by touching it , and even more important, download "Key Plus for LG" https://play.google.com/store/apps/details?id=com.apptuners.keyplusapp , it works without root, and assign QuickTorch to volume up key on the back of Your phone .... Who need quick access to QuickMemo ?

Thats very useful ! Actually, quicktorch is not needed. key plus for lg have it's own built in torch and it all works great.
Thanks

HiCZoK said:
Thats very useful ! Actually, quicktorch is not needed. key plus for lg have it's own built in torch and it all works great.
Thanks
Click to expand...
Click to collapse
Oh! ... You get new info from me, i get new info from You .... Good one !

Related

Volume Keys Feature

Hey all, I am an iphone convert. Recently purchased the HTC outright. Great phone. Coming from a jailbroken iphone there are a couple of features that I miss. They're not deal breakers but they are really convenient in my opinion..
I love using my phones as a media player. And although there's no equalizer on the desire, I think the quality is pretty good assuming you're using reasonable earphones.
I found an app on cydia for iphone which reassigned my volume rocker.
If I just tap the volume up or down, it changed the volume as normal.
If I hold the volume key up or down, it skipped the track forwards or backwards.
I was hopeful that a developer might see this as a good addition to the Desire and be able to emulate such a function for the volume keys.
Thanks!
Hmm i'm guessing that you don't use the stock headphones with inline controls then. I'm hoping when the device is rooted a lot of hacks should surface. I want to use the optical trackpad press to bring up the lockscreen for instance. And a flashlight app that actually uses the flash and not a bright white screen lol.
nope. Those earphones are way to large for my ears! I can't even fit the buggers in!
But I agree, being able to wake the phone with the trackpad is a must.
Here's hoping sooner rather than later
ephumuris said:
Hmm i'm guessing that you don't use the stock headphones with inline controls then. I'm hoping when the device is rooted a lot of hacks should surface. I want to use the optical trackpad press to bring up the lockscreen for instance. And a flashlight app that actually uses the flash and not a bright white screen lol.
Click to expand...
Click to collapse
drewsta_j said:
But I agree, being able to wake the phone with the trackpad is a must.
Click to expand...
Click to collapse
Grab the application "No Lock" from the market - works perfectly on my Desire.
drewsta_j said:
Hey all, I am an iphone convert.
Click to expand...
Click to collapse
drewsta_j said:
If I just tap the volume up or down, it changed the volume as normal.
If I hold the volume key up or down, it skipped the track forwards or backwards.
Click to expand...
Click to collapse
Excellent idea. There is currently application with proves key rebinding is possible without root (Tasker), unfortunately it doesn't have volume keys and I do not have time now to try implementing a solution for this.
I will personally look into this in a month (extremely busy atm) as a hobby, and hopefully the device will have been rooted by then making this definitely possible. I'm not an amazing dev., but I can hack around to make things work
Went from Dream to iphone, but Android pulled me back with the Desire.
We are all waiting for root indeed! Shouldn't take too long I reckon. It is definately a must to wake up on menu/trackpad or home key. Anyone has some ideas?
No lock also bypasses the lockpattern, too bad. And it looks as if it runs in the background and only turns off the screen. Feels like it wil drain the battery, but maybe I am mistaking.
NoLock is okay, but any key turns the screen on. This could be a pain if it's in your pocket and you accidentally press the volume keys, for instance.
When I had the tweak that allowed me to skip tracks with the volume keys, it took away most of my needs to turn the screen simply to skip tracks. This helped save the battery.
Not only that, it also helps if you are running a different application. You wouldn't need to go back to the home screen to use the widget.
Just a couple more benefits
Hi all,
My 1st post on xda
I'm no developer, and haven't coded anything since ages, but after some digging I think may be possible to implement such a feature.
According to the android developer reference on (sorry, I'm a new user so I can't post links)
KeyEvent
KeyEvent.Callback #onKeyDown
Dialog #onKeyDown
And those forums (search for this on google)
anddev org disable_volume_keys-t10191.html
google groups android developers Long-press hard volume keys
Tell me if I'm wrong, but those links indicate that it is possible to replace the behavior of a key press ("intercepting" it before it gets interpreted by the system that changes the volume setting). Then once you intercepted it, you can check if it is a normal key press (short), in which case you would still allow to "forward" the information to the system. BUT, if you detected that it is a long press, you activate the action "next track" and do not forward the volume information to the system.
Something like (syntax is nor correct, of course)
Code:
public boolean onKeyDown(int keyCode, KeyEvent event) // the way I understand this line, it will replace the default behavior of the onKeyDown routine
{
if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN // if the key pressed down is vol_down
...
if the key press is long // don't know the code for that
do the action for next track
return true; // means that you do not forward the keypress to the system
else // if the keypress is not long
return false; // you have not intercepted the keypress, so you forward it to the system
...
else return super.onKeyDown(keyCode, event); // if any other key is pressed, forward it directly
}
Any opinions on that? Is the xda forum the right place to talk about code, or are other forums more suited to discuss about that?
Interesting..
If the code looks like that I might have to take up a hobby in learning how to code. It doesn't appear to be tooo difficult at all.
It does look like you may be on the right track there Bricolo_fr..
Cheers for looking into it.
Drew.
I see a potential problem though. You'd need to know what media playback program is actually being used, and it needs to support receiving messages from other programs so that you can tell it to skip to the next track. This might even require different coding for every player program available, if they receive messages in different ways.
In other words, you could end up having to write your own media player program.
FloatingFatMan said:
I see a potential problem though. You'd need to know what media playback program is actually being used, and it needs to support receiving messages from other programs so that you can tell it to skip to the next track. This might even require different coding for every player program available, if they receive messages in different ways.
In other words, you could end up having to write your own media player program.
Click to expand...
Click to collapse
Ok, well surely there must be a simple solution?
Why can't we say create an app where you could select which media player you are using (only have a few of the main ones) then we would be able to amend the code as per which option they select before it was implemented?
drewsta_j said:
Ok, well surely there must be a simple solution?
Why can't we say create an app where you could select which media player you are using (only have a few of the main ones) then we would be able to amend the code as per which option they select before it was implemented?
Click to expand...
Click to collapse
Sure you can do that; buy you'd have to examine each of those apps, work out if they accept messages, and work out what format said messages need to actually be in.
One would hope they would implement standard interfaces, but that's all it is, a hope.
Well personally, I use the stock player. It ain't the best but it gets the job done. So if it was just created for that at least I'd be more than happy
Thanks for the comments.
FloatingFatMan you are indeed right. I didn't know that all media players don't behave the same. So not all of them accept incoming messages, and not with the same protocol? Hum...
Does that mean that widgets for media player control are only compatible with a specific media player, also?
About the code itself, do you guys think can work?
I'm quite new here, is xda a place about writing code or should we discuss that in another place where people are more used to that?
Cheers
now that the Desire can be rooted...
on the Nexus one (probably other devices too) with the cyanogenmod roms, this feature is availale. just long press vol+ or vol- and you get next/prev track
can this be done with a moded rom on the desire also? what kind of changes need to be applied to the stock rom to add this function?
Bricolo_fr said:
now that the Desire can be rooted...
on the Nexus one (probably other devices too) with the cyanogenmod roms, this feature is availale. just long press vol+ or vol- and you get next/prev track
can this be done with a moded rom on the desire also? what kind of changes need to be applied to the stock rom to add this function?
Click to expand...
Click to collapse
Agreed. am really liking forward to his feature now the phone is rooted.
ephumuris said:
Hmm i'm guessing that you don't use the stock headphones with inline controls then. I'm hoping when the device is rooted a lot of hacks should surface. I want to use the optical trackpad press to bring up the lockscreen for instance. And a flashlight app that actually uses the flash and not a bright white screen lol.
Click to expand...
Click to collapse
You can try Flashapp on the Market. I can post URL yet but you'll find it...]
Another excellent example that long press on a hardkey can be implemented without root is Quick Settings (great app btw): it can be brought up anytime, no matter what app you are running by longpressing the search key.
Did anyone ever get any further with this?
ephumuris said:
And a flashlight app that actually uses the flash and not a bright white screen lol.
Click to expand...
Click to collapse
Apologies as I know it's a bit OT for this thread, but just wanted to make sure you were aware of the LED Desire Light app (http://www.appbrain.com/app/nostovic.android.desire.ledLight) - the latest version even has a nice wee widget to put the flash on/off, but the main app also offers SOS and turning text into Morse code!!
oxygen mod - based on cyanogen has:
* Skip tracks with long press volume up/down
http://forum.xda-developers.com/showthread.php?t=829734
update: it's a cyanogen feature, so all mods based on cyanogen have this
it works with screen locked.

[Q] Keyboard lighting settings change?

Is it possible to tweak the keyboard lighting settings because it goes off to soon imho....
thx
WOW looks like this is a one million question..
mr.boonet said:
WOW looks like this is a one million question..
Click to expand...
Click to collapse
Not exactly sure what you mean by this, but the question has been asked lots of times (just do a search on keyboard backlight) as many people complain about it. No great solution so far though unless you install a custom ROM (I know CM6 allows you to customize all of the backlight levels) or cover up your light sensor to keep it lit...
Alternatively, I think there they might be some apps on the market like Power Manager that keep the backlight on, but I have tried any since I use CM6...
ok thanks, i'm running virtuous but idk if its possible to customize it, ill check it out and search the market otherwise thx!
It would only turn off if there's lots of light. There's no timer.
Sent from my T-Mobile G2 running Cyanogenmod.
not talking about a timer, just the sensitivity of the sensor regarding the lighting on keys.... it just goes of to quick imo....

[Q] Use Menu and Back button as notification LED

Hi there,
is there a way to use the Menu and Back button on the bottom of the phone as a notification LED? Just let it blink if there is a notification in the system?
Greetings
Christian
I have tried several apps (BBS Notifications, ButtonLED) to accomplish this, unfortunately without any success.
The BBS Notification was able to control the button lights, however when the screen is off the lights do not work. Some phones do not allow the lights to go on, when the screen is off and as it seems S4 Mini is one of them. I also hope someone will find a solution for this, preferably one that will not cause too much battery drain.
Another option might be BLN mod. However, I read that the BLN modification in kernel might cause battery drain exactly because of the necessary changes in power management in order to allow the button light to work when the screen is off (the BLN mod for Mini does not exist yet as far as I know).
Sent from my GT-I9195 using Tapatalk 4 Beta
hello
I think the BLN kernel solution is better than any noLED app or other.
So I am very interested in a BLN supporting kernel.
Were can a user as me ask for this or can see the progress in building such a BLN-supporting kernel?
Thanks
Tom
You can try noled it uses your screen led for notification but drains battery
Sent from my GT-I8190 using xda app-developers app
As I wrote I this the BLN is much more better.
If you look at night on your superAMOLED screen while a noLED sign is there, the whole screen is lighter.
As far as I see this app (noLED) is not able to let our wonderful AMOLED screen totaly black but gives a little light on the whole screen.
So: were can a "new" user as me, with 2 years CM experiance at his Galasy S I can ask developers to create a BLN supportet kernel?
I dont want to post it in the wrong place here in XDAdev.
thanks !
Tom
chris42too said:
Hi there,
is there a way to use the Menu and Back button on the bottom of the phone as a notification LED? Just let it blink if there is a notification in the system?
Greetings
Christian
Click to expand...
Click to collapse
if you can wait for cm 10.1 i think you will get bln or cmLights support ... afaik this is needed to get this to work and @arco68 allready included this ... correct me if im wrong
m4kl4 said:
if you can wait for cm 10.1 i think you will get bln or cmLights support ... afaik this is needed to get this to work and @arco68 allready included this ... correct me if im wrong
Click to expand...
Click to collapse
I remembered to see the backlight somewhere on a todo list, but now can't find it. Is this now available in the stable release?
no it isn't. Still on the list.
Anything new yet? My girlfriend uses se S4 mini and is annoyed of the missing LED. NoLED drains too much battery...
For Stock Rom: http://forum.xda-developers.com/showthread.php?t=2545244
For AOSP: http://forum.xda-developers.com/showthread.php?t=2512332
junkyde said:
For Stock Rom: http://forum.xda-developers.com/showthread.php?t=2545244
For AOSP: http://forum.xda-developers.com/showthread.php?t=2512332
Click to expand...
Click to collapse
Thanks! When I scrolled in Dev. section, didn't see that thread
--Rob-- said:
Thanks! When I scrolled in Dev. section, didn't see that thread
Click to expand...
Click to collapse
So what do these links tell me. After reading them I am not sure what to do with it? Can I just add that to my Cyanogen or is it different?
What happens with Cyanogen Updates then?

3.5mm Klick Click Button

3.5mm Klick Click Button & USB OTG
Since I almost never use 3.5 port, this additional button nicely fits on my Nexus 5.
To control this little device, need to use KlicK. By using Tasker and Secure Settings I got functional second power button. However, I've no idea how to get exact power button, cause in my case I cannot press one to wake display and press again to turn it off.
It possible to use 1, 2, 3 click action and program them to any installed app.
Also, I got a nice small black USB OTG.
Battery draws just a little bit more by 7 hours sleep I spent 4% and usually for the same without it, drawing is about 3.5 hours per 1%.
Unfortunately, I found that in Skype sound is dispersing while this button is connected.
p.s. BTW, would be great to get the same idea for microusb, cause I almost do not use it too.
It would be a lot harder to get the same functionality over the USB port as it is not hard wired for this kind of things.
For extra buttons I'd recommend you Dimple or something similar.
Have a nice day!
The one you got is the cheap version of real one. Probably will end up with bugs and unsupported app.
My wife owns a xiaomi phone, she is Chinese, and I copied the Mikey app off of it. Then I did some digging and found a English version of the Mikey app at the this site:
http://en.miui.com/thread-18958-1-1.html
Wondering if anyone is willing to test it.....
Sent from my Nexus 5 using XDA Premium 4 mobile app
As the site requires a username and pass to download, here is the latest English version of the Mikey app
http://ppl.ug/B2TC04xXC_A/
Sent from my Nexus 5 using XDA Premium 4 mobile app
x111 said:
3.5mm Klick Click Button & USB OTG
Since I almost never use 3.5 port, this additional button nicely fits on my Nexus 5.
To control this little device, need to use KlicK. By using Tasker and Secure Settings I got functional second power button. However, I've no idea how to get exact power button, cause in my case I cannot press one to wake display and press again to turn it off.
It possible to use 1, 2, 3 click action and program them to any installed app.
Also, I got a nice small black USB OTG.
Battery draws just a little bit more by 7 hours sleep I spent 4% and usually for the same without it, drawing is about 3.5 hours per 1%.
Unfortunately, I found that in Skype sound is dispersing while this button is connected.
p.s. BTW, would be great to get the same idea for microusb, cause I almost do not use it too.
Click to expand...
Click to collapse
How exactly did you get this working with the klick app? I have one, but there's no shortcut or tasker option I see on there.
frigidazzi said:
How exactly did you get this working with the klick app? I have one, but there's no shortcut or tasker option I see on there.
Click to expand...
Click to collapse
It's very easy, while you made an action in tasker, you just need make an app via tasker, install it and direct those app for klick.
New update of Chinese app "klick" and now Skype as normal without interruption.
so far a nice button,
not sure yet how correctly make a wake up app for in.
x111 said:
New update of Chinese app "klick" and now Skype as normal without interruption.
so far a nice button,
not sure yet how correctly make a wake up app for in.
Click to expand...
Click to collapse
my version is 0.977 , is there a newer one ?
rayiskon said:
my version is 0.977 , is there a newer one ?
Click to expand...
Click to collapse
no, it's just me updated on it cause I didn't use my button till Skype was incompatible with it.
x111 said:
no, it's just me updated on it cause I didn't use my button till Skype was incompatible with it.
Click to expand...
Click to collapse
You can also buy one from gearbest for $0.39 + free shipping using coupon code GBSMR
dealhunter said:
You can also buy one from gearbest for $0.39 + free shipping using coupon code GBSMR
Click to expand...
Click to collapse
thanks for sharing, the coupon code work for me. just $0.39
Apparently doesn't work well off custom roms...
works great off the shelf with another xiaomi phone i had...and samsung.. hmmm.
bah, 1.72 only.
dealhunter said:
You can also buy one from gearbest for $0.39 + free shipping using coupon code GBSMR
Click to expand...
Click to collapse
thanks for sharing.
also, found that if you just select "home" in klick app, it works like a power button when screen off and device is locked, that so cool.
no need anymore tricks with tasker.
x111 said:
thanks for sharing.
also, found that if you just select "home" in klick app, it works like a power button when screen off and device is locked, that so cool.
no need anymore tricks with tasker.
Click to expand...
Click to collapse
that's been one of my profiles since the first day
1 click - home (power on)
2 clicks - starts endomondo (i cycle a lot)
3 clicks - starts camera
long click - quick settings
The "available on lock screen" option has a bit of a security issue, if you have a pattern lock and start the camera with the app you're able to view previous pics. Normally they're locked out if you have a pin/pattern lock.
Other than that this thing works great
Just wanted to say was on the Mahdi rom and was getting a google voice to text message so decided to try android L. Klick works much better on L then it did on that rom.
1 - home
2 - camera
long - flashlight
Works well (though the double click you have to time it a bit)

[No root] Finally, an app to enable native Lift To Wake (lockscreen)

OnePlus Lift To Wake
TL, DR. Where is the download?
github.com/xubowenhaoren/OPLiftToWake/releases
What does it do?
This is a simple app to enable Lift To Wake for OnePlus 7 series.
It is not the Lift To "Ambient Display" in the stock Settings App; it enables the true Lift To "Lock Screen" like other phones.
Why do I want this feature?
You've probably already known that OnePlus, in Android 10, reveals the notification content on the lock screen after Face Unlock.
But to see those notifications, you either need to:
1. Pick up the phone and unlock with your finger at the Ambient Display. A two-step process.
2. Pick up the phone and press the power button. Again, a two-step process.
Now with the app, you can pick up the phone and the lock screen immediately shows up.
How does it do this?
It listens to the native system sensor (`oneplus.sensor.pickup`). In my testing, it is very power efficient.
What phones does it support?
I have tested this on a OnePlus 7T with Android 10. It should also work with other OnePlus 7 series.
Note that for earlier OnePlus phones, there is also a [pickup sensor] but with a different name.
If you want this app to work with earlier OnePlus phones, you should try replacing this line in `Utils.java` with the correct sensor name:
```
mSensor = Utils.getSensor(context, mSensorManager, "oneplus.sensor.pickup");
```
How do I use it?
You probably want to turn off the Ambient Display first.
After installing the app, turn on the "Lift To Wake" toggle.
You should also consider turning off the battery optimization of the app for a more consistent background performance.
Do I need Magisk for this?
No, it is root-free.
Credits
Much of the code is from the Lineage OS team.
Other code references can be found in the code comments.
This is brilliant!! Appears to be working great... Will provide an update on power efficiency in a while
How do I install
Works great on OP7 pro ?.
Jdhal21 said:
How do I install
Click to expand...
Click to collapse
github.com/xubowenhaoren/OPLiftToWake/releases
Works so well with face unlock auto unlock and PIXEL AOD mod.
is there any way to make the screen lit up time response a bit faster ?
umair shaikh said:
Works so well with face unlock auto unlock and PIXEL AOD mod.
is there any way to make the screen lit up time response a bit faster ?
Click to expand...
Click to collapse
I am afraid no. That's determined by the system sensor.
bwx074 said:
I am afraid no. That's determined by the system sensor.
Click to expand...
Click to collapse
Ahh. Good work tho
This works great. Any way to get it to run automatically after a reboot? I have to enable after every reboot.
Thanks, again!
GeneFitz23 said:
This works great. Any way to get it to run automatically after a reboot? I have to enable after every reboot.
Thanks, again!
Click to expand...
Click to collapse
I've made efforts to enable this service after reboot. It wasn't successful, however. Oxygen OS has a strict whitelist of apps that may start automatically after a reboot. One way to work around this is to use Accessibility Service, but that could cause more battery drain. Lol, I think it's better to leave things this way.
Very useful app, this was my most demanding functionality after bought OP7T
Thank You For this
Can u add to the store please?
Nice app. Thnks
It works great for op7t, but doesn't work for Op7.
On op7, the screen lights up, but faceunlock is not available.
You need to click on faceicon first to work (screens in atach).
But, if you unlock op7 via the power button (second screen in atach) - faceunlcok works great!
Is there any solutions for op7?
Works as it should! But screen wakes a lot while inside the pocket.
Very useful mod, thx for that
Only issue that it doesn't work anymore after some hours,i need to start the app again to get it working again for a few hours. I already have disabled battery optimisation. Any ideas to fix this?
Regards ysco..
Hello, how can i make it work on Oneplus 8?
This app is great, something I've been looking for a while. But, it doesn't work consistently. It stops after a few hours after I enable it. Then I have to open the app and then it will 'realize' the switch is still on and start working again. Is there a solution for this?
Thanks bud!! It works like a charm!!
Looks really helpful.
Works good also.
Thanks.
Tapatalk via OnePlus 7T

Categories

Resources