Home Disable LEDs on Raspberry Pi's
Post
Cancel

Disable LEDs on Raspberry Pi's

Disable LEDs on Raspberry Pi

Edit the Boot Config

1
sudo nano /boot/config.txt

Turn off PWR LED

1
2
dtparam=pwr_led_trigger=none
dtparam=pwr_led_activelow=off

Turn off ACT LED

1
2
dtparam=act_led_trigger=none
dtparam=act_led_activelow=off

Turn off Ethernet ACT LED

Pi4

1
dtparam=eth_led0=4

Pi3B

1
dtparam=eth_led0=14

Turn off Ethernet LNK LED

Pi4

1
dtparam=eth_led1=4

Pi3B

1
dtparam=eth_led1=14
This post is licensed under CC BY 4.0 by the author.