Hi,
Just wondering if there is any configuration tweak to increase the brightness/contrast of the 7"LCD panel?
BR.
-Marius--
02-10-2017, 10:15 AM
(This post was last modified: 02-10-2017, 10:16 AM by @lex.)
Facing same problem here. Brightness and contrast too low, but my LCD came with vertical stripes, usually should be dead pixels but unfortunately it is broken (dead stripes).
I will post a video so you can have an idea if you have the same problem. I have read somewhere ( i can't remember where ) it is a back-light issue so it seems just a matter of turning the back-light on.
Thanks!
I don't have any vertical stripes on my screen, but the 362 out tweak did the trick!
Screen is nice and bright now!
BR.
--Marius--
Turning up to full brightness and turning off work well, by following:
# echo 362 > /sys/class/gpio/export
# echo out > /sys/class/gpio362/direction (turns up to full)
# echo in > /sys/class/gpio362/direction (turns off backlight)
I can also turn on and off by echoing:
# echo 0 > /sys/class/gpio362/value (turns on)
# echo 1 > /sys/class/gpio362/value (turns off)
but, when the system boots without manipulating these, the backlight is on, but dim. I can't find a way of reverting to that after doing the first:
# echo out > /sys/class/gpio362/direction
pfeerick 's thread seems inconclusive on other values.
The pin that controls the backlight is actually a hardware PWM output. If you program the PWM or use a linux backlight driver that supports GPIO-PWM you should be able to control brightness like on the Android images.
Thanks, will look into it. Out-of-the-box the pin is obviously being fed by PWM control. Can you point to where this is configured and turned on at boot?
BR.