Question Flashlight Brightness Mod? - Sony Xperia 1 III

So apparently the 1 III suffers from the same issues as its Sony Predecessors... The Flashlight is very bright when you use it as camera flash, but when you turn on the flashlight, its artifically throttled to idk, prevent overheating?
So for the older Xperias there were ways to modify flashlight configs and librarys. However, I havent found a way to edit the current parameter for the flashlight on the 1 III. For the 5 II the GodlyTorch App seemed to work, according to a report in https://forum.xda-developers.com/t/...ness-fix-torch-light-not-photo-flash.4203293/, but that doesnt want to work on my 1 III (I have Root)
Now the question: Can someone find the parameters to increase Flashlight LED Current via Magisk Module, XPosed/LSPosed Module or manual edit? I'd be even willing to donate to a kind developer who builds a usable flashlight mod for the 1 III.
Thanks in advance.

When flashlight is on and your device is rooted, you can change the value of
Code:
/sys/class/leds/led:torch_0/brightness
/sys/class/leds/led:torch_3/brightness
(There are two flash LEDs)
The max value you can set is given by the max_brightness file in the same directory.
I didn't find a way (yet) to apply this by default, you have to have the flashlight running in order to change its brightness that way.
However, I do warn you that I am not responsible in any way if using your LED at full power causes damage to your device.

MK73DS said:
When flashlight is on and your device is rooted, you can change the value of
Code:
/sys/class/leds/led:torch_0/brightness
/sys/class/leds/led:torch_3/brightness
(There are two flash LEDs)
The max value you can set is given by the max_brightness file in the same directory.
I didn't find a way (yet) to apply this by default, you have to have the flashlight running in order to change its brightness that way.
However, I do warn you that I am not responsible in any way if using your LED at full power causes damage to your device.
Click to expand...
Click to collapse
Thanks for this info, working fine for me!
I played a bit around with this and tested the brightness values with 150; working fine in terms of short term heat development.
Edit 2: After a few days I start to notice a very slight discoloration of the diffusor with a value of 150. Its not affecting anything and barely visible, but I'd recommend to go lower than 150, because I suspect the LED may get too warm for the diffusor. I changed the guide to use 30 for now (which equals double the brightness compared to stock), please test your values for yourself, its probably better to not exaggerate it.
Make sure you type in the values right! Too high values and the LED Diffusor may melt, or the LED might die. Do this modification at your own risk, no matter at which brightness you target! I am not responsible for side effects resulting from the mod.
With Terminal Shortcut Pro and assigned Root Priviliges I made myself a Home Screen Icon that will boost the values for me in the current "Torch session" once the LED is turned on before. Other terminal emulator apps will work too.
In the Shortcut I set Run with Root and used the following command
Code:
echo 30 >> /sys/class/leds/led:torch_0/brightness && echo 30 >> /sys/class/leds/led:torch_3/brightness
Basically just a command that writes the 30 brightness value to the 2 files.
If someone can find a terminal command that turns on the flash in the first place, we could combine the commands to potentially make a simple but working replacement quick settings for the torch.
Edit: Thanks to the XDA Community and a Tool I was able to recreate the Torch experience with a Quick setting
You need https://play.google.com/store/apps/details?id=com.quinny898.app.customquicksettings
You have to buy the premium in app purchase for 1,29€ to unlock Root Command Running. Then you configure your quick setting (choose the Advanced -> Root Command under Preset) and paste the following script (credits to https://forum.xda-developers.com/t/increasing-torch-power-with-root.3637773/post-73098701, modified by me for 1 III)
Code:
#!/system/bin/sh
toggle=$(cat /sys/class/leds/led:switch_0/brightness)
if [ "$toggle" = "0" ];then
echo 30 > /sys/class/leds/led:torch_0/brightness
echo 30 > /sys/class/leds/led:torch_3/brightness
echo 1 > /sys/class/leds/led:switch_0/brightness
echo "on"
else
echo 0 > /sys/class/leds/led:torch_0/brightness
echo 0 > /sys/class/leds/led:torch_3/brightness
echo 0 > /sys/class/leds/led:switch_0/brightness
echo "off"
fi
Once again, make sure you type in the values right! Too high values and the LED Diffusor may melt, or the LED might die. Do this modification at your own risk, no matter at which brightness you target! I am not responsible side effects resulting from the mod.
Then you get rename the toggle, give it a nice Torch Icon and set the color to grey. It will function like the normal quick setting: Tap once, it turns on, Tap again, turns off. Even works locked.
Good luck and best regards.

If you want to use the Google Assistant Button as a torch toggle and also have Quick Settings Toggle (sadly its always toggled on) i found an app that can do both.
You need:
LSposed/Xposed
Root Shell access (adb shell)
Xposed Edge pro
Busybox for Android NDK (Magisk Module)
XperiaGAButtonRemap (Magisk Module)
Open a cmd or powershell
execute adb shell
execute su
accept root permissions on your phone
execute vi /bin/torch
press the key i
paste the script:
einhuman197 said:
Code:
#!/system/bin/sh
toggle=$(cat /sys/class/leds/led:switch_0/brightness)
if [ "$toggle" = "0" ];then
echo 150 > /sys/class/leds/led:torch_0/brightness
echo 150 > /sys/class/leds/led:torch_3/brightness
echo 1 > /sys/class/leds/led:switch_0/brightness
echo "on"
else
echo 0 > /sys/class/leds/led:torch_0/brightness
echo 0 > /sys/class/leds/led:torch_3/brightness
echo 0 > /sys/class/leds/led:switch_0/brightness
echo "off"
fi
Click to expand...
Click to collapse
press ESC
type :wq and press ENTER
execute chmod +x /bin/torch
Now you can execute /bin/torch as root and it will toggle the torch with higher brightness values.
In Xposed Edge enable "Keys" toggle and open it. Tap on "+ Add" at the bottom, press the Google Assistant Button, it should be recognized as "KEYCODE_PROG_BLUE", then set the action of either click/double click/long press (whatever you prefer as the torch toggle) to execute a Shell command, enter /bin/torch in the input field and enable the "Root access" toggle.
If you want, you can also set other custom things to the Google Assistant button for the other 2 states.
For the quicksettings menu tap on "Quick settings tiles" in the main menu of Xposed Edge and enable the first tile and open the settings for that tile. Set the action, again, to a shell command, input /bin/torch and enable Root Access. You can set the label to "Torch" and choose the Torch icon found in "Built-in icons". As i already said, the toggle will always be turned on for some reason. It just executes a shell command after all.
Good luck

Amazing, thank you everyone.
However, please let me insist that this may damage your phone if you put values too high... trust me. I accidentally put a brightness of 350 instead of 150 while trying the script in a terminal, and a few seconds were enough for the plastic underneath the glass to melt... Thankfully, it is still transparent so I can still use my flashlight, but no doubt it could have done a lot more damage if I let it run for longer. So please, use this with a lot of care (and double check what you write).
That's why in lots of countries, rooting voids your (hardware) warranty, you can do physical damage to your device so again, please be careful. Thankfully, this plastic bit and even the LED underneath are easily replaceable (the plastic bit is separated from the rear glass and the LED is on a separate ribbon cable). However, there don't seem to be a lot of OEM replacement parts for this phone yet.

Seems like a lot of work for little return and added threat of damage to an expensive phone. I agree that the brightness is dimmer than other phones I have had...but I did a test in a completely dark room and it actually is bright enough to find "whatever" you may be looking for. So I can live with it. Maybe Sony will do something to improve it a little?

jaseman said:
Seems like a lot of work for little return and added threat of damage to an expensive phone. I agree that the brightness is dimmer than other phones I have had...but I did a test in a completely dark room and it actually is bright enough to find "whatever" you may be looking for. So I can live with it. Maybe Sony will do something to improve it a little?
Click to expand...
Click to collapse
Sony could definitely improve it. But it seems like they had a history for compareably dim Flashlights.
I edited my explanation post to adapt lower brightness, because 150 as value starts to slightly discolor my diffusor, so I suspect we should run it lower.

MK73DS said:
太棒了,谢谢大家。
但是,请让我坚持,如果您将值设置为高,这可能会损坏您的。......我相信在终端中尝试手机时,我不小心将恢复设置为 350 而不是 150 ,几秒钟就可以让玻璃下面的恢复正常……幸好还是可以的,所以我可以使用我的手电筒,但有疑问,如果我能运行更长时间,它会请小心使用它(并仔细检查你写的内容)。
这就是为什么在国家/地区,root 导致您的许多(硬件)故障,您可能会再次对您的设备造成物理损坏,请小心。值得庆幸的是,塑料钻头甚至下面的 LED 都可以轻松更换(塑料钻头与后玻璃分离,LED 还位于单独的带状电缆上)。
Click to expand...
Click to collapse

darken5404 said:
Click to expand...
Click to collapse
You can't say I didn't warn you!

Indeed flashlight in mark 3 and older xperias is very bad.
I compared it to an iPhone and it's like day and night. Many aspects xperia brand is suffering like front camera, flashlight, no 21:9 pics, missing 4k 60fps recording in main app with stabilization, poor screen brightness, insufficient battery capacity, no any cooling system (especially at this price there should be vapor chamber or any other advanced cooling and not throttling cpu as a solution...), Not to mention regular software apps like Album, email and others :/

MK73DS said:
You can't say I didn't warn you!
Click to expand...
Click to collapse
I got it fixed through sony aftermarket and has ip68,fixed the screen for me by the way

On android 12 after rebooting the function stops working.

So I got to the area of the phone you guys specified, but as of today, the default values are WAY different that what yall found. Let me take a few screen shots

Here is the systems default peramitors. Any idea why they are so different?
Edit- Okay, so extra piece to the puzzle. When torch is off, the brightness file is 0, but when it is on the file is set to 15.
editing the file while the torch is on does nothing.
Edit 2 - Just wanted to note that for those who just want a demonstration of the changes possible, the fallowing app will do just that
Release v1.4.6 · BRoy98/GodlyTorch
Merge pull request #2 from TheDorkKnightRises/patch Fix LED file path for OnePlus One (bacon), proper device names for OP Merge pull request #3 from TheDorkKnightRises/patch Fix default double-...
github.com
this app needs root. Run it as a HTC 10 and it works just fine. However, I would like to recommend NOT going over the half way point. its VERY bright and will probably kill your LED if you do. You have manual control over the brightness. You can add it as a shortcut in the drop down menu of your phone. simply use the standard torch button, and then click the godly torch button to activate whatever preset you gave it.
Edit 3 - setting the brightness in Godly Torch to 50% Intensity sets the brightness to 135. Given that we know damage starts to happen at 150, I set the brightness in Godly to 15% (under the "toggle Intensity" shown in the screen shot), which brings the brightness to a value of 45. Its easily double as bright. I would not recommend going past this point.

I would say by using godly torch as a HTC 10 worked...mind you I double checked the brightness by just hitting the quick toggle and then messing with godly torch. The lower setting is matching just turning on the quick toggle the higher setting is what I'm comfortable with, but idk how long I'm comfortable running it at that brightness.

BlazingKahn35 said:
On android 12 after rebooting the function stops working.
Click to expand...
Click to collapse
For those on stock who use the assistant button :
If it stops working after reboot, copy the binary file to somewhere safe on your sd card, then using XPosed edge just add a long press gesture to your assistant button that recopys the file from your sd card, then sets the permissions again (make sure to check run as root)
cp /sdcard/torch /bin/ | chmod +x /bin/torch

Related

Set the lowest LCD backlight

By default the LCD backlight can be set to "30 to 255". But if you use your Streak in dark, you may want to get a bit lower.
With this you get the lowest backlight possible (it won't turn off on "0"). You may replace "0" with higher number (0 to 29).
"Night mode"
Code:
echo "0" > /sys/devices/platform/mddi_auo_wvga.0/leds/lcd-backlight/brightness
chmod 444 /sys/devices/platform/mddi_auo_wvga.0/leds/lcd-backlight/brightness
"Back to normal"
Code:
echo "30" > /sys/devices/platform/mddi_auo_wvga.0/leds/lcd-backlight/brightness
chmod 644 /sys/devices/platform/mddi_auo_wvga.0/leds/lcd-backlight/brightness
What you can do now
You can use app "GScript" to create your own "shortcuts" and put them on your screen. Unfortunately you will have to disable "Automatic brightness" manually to make it work (no code for that yet).
Future development
I guess it has to be possible to modify the backlight range from the default 30-255 to 0-255 and adjust the light sensor too.
I will try dig deep. If anyone knows more, please share.
This is awesome. At night, I like to use Amazon Kindle to read a book but it's still too bright. I may have to play around with this. An APK would be even better.
almostinsane said:
An APK would be even better.
Click to expand...
Click to collapse
Give me a few minutes and i'll knock one up
Here you go. It's not the best looking app in the world but it gets the job done!
Thanks moneytoo!
I'll post this in the app section too.
There could be a possibility to tweak lowest light setting in BACKLIGHT_CONTROL in EMList app. To view EMList app, type *#*#307#*#* and look in app drawer. To unview EMList in your apps, type an*#*#308#*#*
Sent from my Dell Streak using XDA App
almostinsane said:
At night, I like to use Amazon Kindle to read a book but it's still too bright.
Click to expand...
Click to collapse
Completly agree, this is very cool. I will try it out tonight, thanks.
try searching for 'Dimmer' on the market. turns from whatever brightness you're at to 10.
Easy and free!
samstables said:
try searching for 'Dimmer' on the market. turns from whatever brightness you're at to 10.
Easy and free!
Click to expand...
Click to collapse
That's good to know. It only won't let you set 0-9 while the workaround with "chmod" works.
Thanks for this moneytoo
And thanks for the tip toward 'GScript' i have been looking for something like this for ages - this is great
Thanks guys! on my second day on the streak and loving it. The community support makes me love it even more!
Cheers.
Sent from my Dell Streak using XDA App
Thanks moneytoo...this works perfect.
How about turning it completely off?
I'm in the wrong thread because I'm running an Atrix, but perhaps in your adventure you've come across the relevant area to control off/on for the backlight on the Streak. On my old PocketPC I could stretch out the battery life significantly by doing this, and since it was just an LCD screen you could still view it enough to read ebooks just with ambient light.
Thanks in advance and apologies if this is considered hijacking.
Does not work on my stock 351...
If it's rooted, just use superdim or adjbrightness. Both could be found on market for free.
Sent from my Dell Streak using Tapatalk
Didn't know about superdim, it works great. Thank you.
You can also just make the change using root explorer (if you are rooted), and the change takes place right away.
You just have to remember to change the permissions to 444 (read only to everyone) or the values change back with you lock the screen.
More interesting is that with read only to everyone only autobrightness can up the brightness.
I usually use Screen Filter app, available on Market
but I want to try this app
*downloading....
moneytoo said:
By default the LCD backlight can be set to "30 to 255". But if you use your Streak in dark, you may want to get a bit lower.
With this you get the lowest backlight possible (it won't turn off on "0"). You may replace "0" with higher number (0 to 29).
"Night mode"
Code:
echo "0" > /sys/devices/platform/mddi_auo_wvga.0/leds/lcd-backlight/brightness
chmod 444 /sys/devices/platform/mddi_auo_wvga.0/leds/lcd-backlight/brightness
"Back to normal"
Code:
echo "30" > /sys/devices/platform/mddi_auo_wvga.0/leds/lcd-backlight/brightness
chmod 644 /sys/devices/platform/mddi_auo_wvga.0/leds/lcd-backlight/brightness
What you can do now
You can use app "GScript" to create your own "shortcuts" and put them on your screen. Unfortunately you will have to disable "Automatic brightness" manually to make it work (no code for that yet).
Future development
I guess it has to be possible to modify the backlight range from the default 30-255 to 0-255 and adjust the light sensor too.
I will try dig deep. If anyone knows more, please share.
Click to expand...
Click to collapse
Hiya buddy, you forgot to set the led buttons brightness as well:
Code:
echo "50" > /sys/devices/i2c-0/0-002c/leds/button-backlight/brightness
watch_mania said:
Hiya buddy, you forgot to set the led buttons brightness as well:
Code:
echo "50" > /sys/devices/i2c-0/0-002c/leds/button-backlight/brightness
Click to expand...
Click to collapse
Oh forget about it. Won't work as expected..
I use adjbrightness, does the same job!

[Q] [Xperia P] how to increase LED shine on transparent line

Hi all,
does anybody know what to change in system to increase light of keys?? thanks for answer
It's connected to screen brightness. If you set your screen brightness higher, the LED bar will be brighter as well... And the other way around.
good point but I need to increase just keylight, it has to be changeable in some text file in system but I have no idea where..
OK, so I found it
It is in sys/class/leds/so34-led1 & so34-led2 & so34-led0 /brightness & max_brightness
but when I change number in brightness from stock 45 to 150 and save, then it's lighting more, but after close Root explorer, it's the same like before and it will return to 45.. what should I do? make init.d skript??
i also tried it, But same thing happens Value gets Changed to default,,,
can any script b made,,,
I think we should find some configuration file for auto brightness, coz the value in bightness file is changing by current light
ok, so I made init.d script, it actually works, but just until normal automatic change of brightness (for example, when turn screen off, or with light sensor changes..) you can't see any changes on startup too, so you have to force start the script (via root explorer click on script and choose "open with Linux Script handler" and then choose "execute", then the lights will be brighter, you can try it for test
Code:
#!/system/bin/sh
echo 255 > /sys/class/leds/so34-led0/brightness
echo 255 > /sys/class/leds/so34-led1/brightness
echo 255 > /sys/class/leds/so34-led2/brightness
but I think I should make different script.. unfortunatelly I don't know where is some configuration file for control of leds or light sensor or something.. I am just a nooby yet..

How to set the screen brightness lower on Alcatel One Touch Evolve

The backlight of the Alcatel One Touch Evolve won’t get any dimmer if you set the brightness below 40 or so (out of 255). I tried RootDim, and it didn’t work any better. Neither did
Code:
echo 10 > /sys/class/leds/lcd-backlight/brightness
Any values before 40 look as bright as 40 does. But this works, if you are rooted:
Code:
echo 20 > /sys/class/leds/lcd-backlight/brightness
echo 3 > /sys/class/leds/lcd-backlight/duty
"duty" apparently designates the pulse width modulation duty cycle. Setting the duty cycle to anything between 3 and 20 will make the screen dimmer than the minimum setting you can get with the normal brightness controls. Setting to 2 turns the screen entirely black, on my phone. The maximum value is 63.
Another way to set this is in the engineer mode that you can access by dialing *#*#3646633#*#*. Swipe to “Hardware Testing” and select “Display.” You can set a PWM duty cycle on that screen. I don’t know whether your phone needs to be rooted for this method to work.
No matter how you set it, it is a temporary change and will be reset next time the screen brightness changes, or if you turn your phone screen off and back on.
Does anyone know of an app that does this? There are plenty of auto brightness apps, and some brightness apps that require root, but I don’t know of any that set both the brightness and the duty cycle. I have some shell commands set up in Tasker, but it’s not very convenient. I could try creating a widget using Tasker, but I may just try writing my own app.
The roms are under a different model name search google for roms in the alcatel one touch pop line and many will work

.

..
First thing first: thanks a lot for the /sys file to change ambient brightness! Gives me ideas of things to play with, ie the ambient brightness being different from the awake brightness is among the top of what I find the most baffling with Android Wear (to me, the point of ambient is to update less frequently, and to move the displayed face a little to avoid burn in: I don't need every last drop of battery; 16-20h is really enough; also, if it's not bright enough by day, it's also not dim enough by night...).
Otherwise, with Tasker and AutoWear, maybe using the screen off state, and setting ambient anew when you exit that state would work? Obviously, the system rewrites that file (it takes more than mere permissions to prevent root from doing what he wants) somewhere between when the screen goes off, and when it goes to ambient again after having been turned on, so with a little tinkering, and maybe some delays, it should hopefully be workable.
MuF123 said:
Hi there!,
I've been trying to set ambient back-light to maximum by echoing 255 to /sys/class/leds/lcd-backlight/brightness and then chmodding it to 444 for readonly, so noone will ever change it.
This kinda works, when I enter ambient mode it really is at 255 level. However trouble stars after entering theater mode - somehow this value gets changed. How can this be?
Any ideas how to debug this?
Click to expand...
Click to collapse
I wish I could answer your question better than this, but wearshell can query brightness values or file values through tasker by having it read your settings once every few minutes, or per minute, or whatever you like if course. if it found the value not what you want it'd fix that .. you could sideload a tasker apk that does the same, but this is inflexible and cumbersome compared to the wearshell option.
..

Press bixby for MAX BRIGHTNESS/OUTDOOR MODE

If you haven't realised, the S10's amazing screen quickly dims a lot when the device heats up, even by performing simple tasks so i came up with a simple fix to keep it locked to MAX unless changed using brightness slider or Adaptive (Auto) Brightness
Searching the /sys/ partition i found the brightness setting.
So, the idea is to press Bixby to activate MAX brightness/Outdoor Mode
Download and install your rightfully owned "Button Remapper" from flar2 in the playstore. # YOU NEED TO BE ROOTED TO USE THIS #
Go ahead and setup, and then click on bixby single press, and click advanced; then root command. And enter the following:
Code:
echo '48599' > /sys/class/backlight/panel/brightness
Wallah!
Your brightness will max out when you press bixby. Just make sure you turn off adaptive brightness beforehand as it will override what you did! And you can use the brightness slider to change the brightness easily again.
(Do bear in mind, your phone will heat up more than usual but thats it, just be slighly cautious and if your phone ever happened to heat up excesively, id suggest the battery not going over 50 degrees celcius as it can damage the lifespan) Me personally, had no issues. Just fantastic to squeeze out a bit of extra brightness when you need it.
Hope this helps !!
Worked like a charm XD
David8960 said:
If you haven't realised, the S10's amazing screen quickly dims a lot when the device heats up, even by performing simple tasks so i came up with a simple fix to keep it locked to MAX unless changed using brightness slider or Adaptive (Auto) Brightness
Searching the /sys/ partition i found the brightness setting.
So, the idea is to press Bixby to activate MAX brightness/Outdoor Mode
Download and install your rightfully owned "Button Remapper" from flar2 in the playstore. # YOU NEED TO BE ROOTED TO USE THIS #
Go ahead and setup, and then click on bixby single press, and click advanced; then root command. And enter the following:
Code:
echo '48599' > /sys/class/backlight/panel/brightness
Wallah!
Your brightness will max out when you press bixby. Just make sure you turn off adaptive brightness beforehand as it will override what you did! And you can use the brightness slider to change the brightness easily again.
(Do bear in mind, your phone will heat up more than usual but thats it, just be slighly cautious and if your phone ever happened to heat up excesively, id suggest the battery not going over 50 degrees celcius as it can damage the lifespan) Me personally, had no issues. Just fantastic to squeeze out a bit of extra brightness when you need it.
Hope this helps !!
Click to expand...
Click to collapse
hey, i know this is a quite old, but s10+ manual max brightness is 300, when it enters high brightness mode it goes up to 700. My question is with root and some commands can i make 700 available through the brightness slider? So i can use 400,500,600 too instead of jumping from 300 to 700?

Categories

Resources