I am using a raspberry pi model 3B+ setup using Mathworks Raspbian image for a dark exposure experiment. The pi needs to be in the dark enclosure (NO light) so I need to disable ALL LEDs.
I tried the suggestions in this thread: https://www.raspberrypi.org/forums/view ... p?t=149126 but they did not work.
I've seen other suggestions to completely remove all the LEDs but before I attempt, I want to know if that will cause problems with the board. I realize that I wont actually have any visual cues from the pi once all the LEDs are removed, I just want to know if they need to be removed a certain way to prevent any issues arising in the remaining functionality.
Re: Removing LEDs for dark-use Pi
just apply black colored hot glue on top of the LEDS.... 

"Don't come to me with 'issues' for I don't know how to deal with those
Come to me with 'problems' and I'll help you find solutions"
Some people be like:
"Help me! Am drowning! But dont you dare touch me nor come near me!"
Come to me with 'problems' and I'll help you find solutions"
Some people be like:
"Help me! Am drowning! But dont you dare touch me nor come near me!"
Re: Removing LEDs for dark-use Pi
This is what worked for me to get the power light disabled. Should also be the essentially the same for activity.
Using none as the trigger didn’t work, I had to use default-on and activelow together. (activelow basically switches on and off, and default-on is always on)
Code: Select all
dtparam=pwr_led_trigger=default-on
dtparam=pwr_led_activelow=on
Re: Removing LEDs for dark-use Pi
LEDs could still come on during a shutdown/reboot cycle. If that matters, covering/removing them is probably the best solution.
Re: Removing LEDs for dark-use Pi
Covering would be the easiest option. a blob of black paint should do it. A small bottle of car touchup paint could be a good option as it's suitably small quantity and comes with a small brush.
- DougieLawson
- Posts: 40466
- Joined: Sun Jun 16, 2013 11:19 pm
- Location: A small cave in deepest darkest Basingstoke, UK
- Contact: Website Twitter
Re: Removing LEDs for dark-use Pi
The answer (as with most WD40 vs gaffer tape questions) is gaffer tape. Just wrap the wee beastie up.
Any language using left-hand whitespace for syntax is ridiculous
Any DMs sent on Twitter will be answered next month.
Fake doctors - are all on my foes list.
Any requirement to use a crystal ball or mind reading will result in me ignoring your question.
Any DMs sent on Twitter will be answered next month.
Fake doctors - are all on my foes list.
Any requirement to use a crystal ball or mind reading will result in me ignoring your question.
Re: Removing LEDs for dark-use Pi
There's the obvious answer. Gaffer tape is universal solution for fixing. WD40 is the universal solution for undoing.DougieLawson wrote: ↑Thu Feb 06, 2020 10:39 amThe answer (as with most WD40 vs gaffer tape questions) is gaffer tape. Just wrap the wee beastie up.
Re: Removing LEDs for dark-use Pi
I've used anti-tamper paint for this, the advantage over normal paint is that it is fairly easy to chip off if you want to see the light again.
Not the brand I used but looks similar: https://www.amazon.com/Viz-Torque-Tampe ... ef=sr_1_32
Not the brand I used but looks similar: https://www.amazon.com/Viz-Torque-Tampe ... ef=sr_1_32
Re: Removing LEDs for dark-use Pi
Sunoo wrote: ↑Thu Feb 06, 2020 3:57 amThis is what worked for me to get the power light disabled. Should also be the essentially the same for activity.
Using none as the trigger didn’t work, I had to use default-on and activelow together. (activelow basically switches on and off, and default-on is always on)Code: Select all
dtparam=pwr_led_trigger=default-on dtparam=pwr_led_activelow=on
Thanks. I bet it helped more than one.
Re: Removing LEDs for dark-use Pi
hi
the led issue is a problem with routers as well some home cimina owners say the same as well please will pie publish this information
thanks
the led issue is a problem with routers as well some home cimina owners say the same as well please will pie publish this information
thanks
Re: Removing LEDs for dark-use Pi
It might not be possible to turn them all off all the time, will need to check.
Principal Software Engineer at Raspberry Pi (Trading) Ltd.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
Re: Removing LEDs for dark-use Pi
...and you still have got the brutal way that I use to use on Arduinos to spare a few milliamperes: knock them away with cutting pliers.
Anyhow they knock away pretty easily, even if you don't want to.
Anyhow they knock away pretty easily, even if you don't want to.
Re: Removing LEDs for dark-use Pi
Just to mention, if you could forward it to the hardware designers of the next versions: the LEDs are intended to be indicators, not illuminators. Driving them with a third of the current would be far enough for the purpose.
It is really a bad habit of hardware designer to put overbright LEDs on on every single USB device just to signal power.
Once you have few of them plugged in, it begin to look like a Christmas tree...
Re: Removing LEDs for dark-use Pi
hi if you cannot remove the led all the time how about only for boot up and power down the led shows
thanks
thanks
-
- Posts: 2394
- Joined: Tue Jun 30, 2015 1:35 pm
Re: Removing LEDs for dark-use Pi
or apply this https://plastidip-sale.com/liquid-electrical-tape
easily to remove and to apply
easily to remove and to apply
Re: Removing LEDs for dark-use Pi
Seems a waste of power to paint over the LED's, I'd rather turn them off.
I use this in config.txt for the Pi4 - it seems to work, but there is probably a better way.
I use this in config.txt for the Pi4 - it seems to work, but there is probably a better way.
Code: Select all
# Disable the PWR LED
dtparam=pwr_led_trigger=none
dtparam=pwr_led_activelow=off
# Disable the Activity LED
dtparam=act_led_trigger=none
dtparam=act_led_activelow=off
# Disable ethernet port LEDs
dtparam=eth_led0=4
dtparam=eth_led1=4
Pi4 8GB and Pi4 4GB running Raspberry Pi OS 64-bit
-
- Posts: 5
- Joined: Fri Mar 30, 2018 8:36 pm
Re: Removing LEDs for dark-use Pi
.
THANK YOU! That works perfectly on my Pi4's
jahboater,jahboater wrote:Seems a waste of power to paint over the LED's, I'd rather turn them off.
I use this in config.txt for the Pi4 - it seems to work, but there is probably a better way.
Code: Select all
# Disable the PWR LED dtparam=pwr_led_trigger=none dtparam=pwr_led_activelow=off # Disable the Activity LED dtparam=act_led_trigger=none dtparam=act_led_activelow=off # Disable ethernet port LEDs dtparam=eth_led0=4 dtparam=eth_led1=4
THANK YOU! That works perfectly on my Pi4's
Re: Removing LEDs for dark-use Pi
thank you
croft
croft