Come disabilitare tutti i LED su computer Raspberry Pi

Come disabilitare tutti i LED su computer Raspberry Pi

Che sia del Raspberry Pi, il modello Zero, 3 o 4, per spegnere tutti i led presenti, come alimentazione e rete lan, vi basterà aggiungere questi 6 parametri nel file config.txt


# Disable Ethernet LEDs
dtparam=eth_led0=14
dtparam=eth_led1=14

# 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

Per accedere direttamente al file config.txt. digitare: sudo nano /boot/config.txt

Se il file viene editato via ssh allora sarà necessario un reboot del dispositivo, se invece il file config.txt sarà modificato attraverso l'SD card, allora l'effetto si avrà al riavvio dello stesso Raspberry.

Tutto funzionerà regolarmente con l'unica differenza che qualsiasi led resterà spento.