Turn off LED lights Rasp Pi 3

  • Is there a script that can turn off the 2 LED lights on the front of the Rasp Pi 3? I find them very bright and distracting as the Pi sits under my TV. I'm running LibreELEC (Krypton) v7.95.2 BETA

    Thank you.

    Edited once, last by diameter (February 4, 2017 at 7:28 PM).

  • According to the RaspberryPi forums:

    Code
    echo 0 >/sys/class/leds/led0/brightness #Turn on
    echo 0 >/sys/class/leds/led1/brightness #Turn off
    
    
    led0 = green one
    led1 = red one

    Put the echo lines in .config/autostart.sh and "It should work!" (tm)

    Other than that, there is nothing that a roll of duct tape cannot fix.

    Edited once, last by Klojum (February 4, 2017 at 7:39 PM).


  • According to the RaspberryPi forums:

    Code
    echo 0 >/sys/class/leds/led0/brightness #Turn on
    echo 0 >/sys/class/leds/led1/brightness #Turn off
    
    
    led0 = green one
    led1 = red one

    Put the echo lines in .config/autostart.sh and "It should work!" (tm)

    Other than that, there is nothing that a roll of duct tape cannot fix.

    Regarding the power LED on the Pi 3, it cannot be switched off... See here :

    Missign control for RED "Power LED" · Issue #1332 · raspberrypi/linux · GitHub

    Edited once, last by diameter (February 10, 2017 at 7:14 AM).