I wrote a command to turn on the flashlight
echo 255 > sys/class/leds/flashlight/brightness
The flashlight turns on but after a second it shines darker. Why?
I wrote a command to turn on the flashlight
echo 255 > sys/class/leds/flashlight/brightness
The flashlight turns on but after a second it shines darker. Why?
echo 255 > /sys/class/leds/flashlight/brightness
? – iBug Jul 29 '17 at 05:59brightness
after the LED brightness decreases? If the reading is no longer 255, then the driver might have been coded so as to disable maximum brightness (probably to prevent overheating). – Andy Yan Jul 29 '17 at 10:50