I'd like to build a small internet radio out of my pi, but I'd like to use it at night, when the flashing LEDs would be disturbing. Is there any way to disable them?
Asked
Active
Viewed 1.4k times
11
3 Answers
13
I know this may sound silly, but a piece of electricians tape over the top would work. Alternatively, put it in a case or box.

recantha
- 4,489
- 20
- 26
6
There is answer in How do I control the system LEDs using my software?
For Power led, if you have RPI 2, then you can turn it off by using
echo 0 > /sys/class/leds/led1/brightness # Power LED
It is taken from the last answer from post I referred.
-
2
-
@akhmed You can only turn off the activity (yellow) light in the PR3 using
echo 0 > /sys/class/leds/led0/brightness
while logged in as root. – Mint Mar 11 '17 at 01:09
6
No
Unfortunately not. The PWR LED, for example, is directly wired to the 5V rail and other LEDs are controlled by closed-binaries.

Alex Chamberlain
- 15,530
- 14
- 67
- 113
sysfs
ordtoverlay
in/boot/config.txt
- see this Q&A – Seamus Jun 11 '21 at 06:27