New Software And camera

Ok … I think I have this reassembled and working.

The new systems is using the indi_allsky, instead of the original allsky software. It prints more detailed on the images and has a better interface and more capabilities. I also updated to a proper 180° view of the sky, rather than the 100 or so of the old lens. Unfortunately, I got it installed and THEN I found out it’s a manual focus lens, so I have to go up on the roof and bring it back down, disassemble the thing, fix the focus (testing it will be fin), and then reassemble everything and mount the resulting apparatus on the roof.

Oh, and I added a DHT22 temperature and humidity sensor.

Disabling Pi LEDs

So one of the issues that came up is LED light shining through holes drilled to allow air to circulate through the dome. While several ideas about shielding the holes and redirecting the airflow occured to me, a simpler option (of course) would be to just turn OFF the LEDs. Or you would think so.

After much web searching and several failed trials, I finally managed to get both the Pi 4b and Pi 5 LEDs to go off, and stay off.

Edit the file /boot/config.txt with you’re favourite editor (I use ViM) and add the following lines to the bottom:

# Disable the PWR LED
dtparam=pwr_led_trigger=default-on
dtparam=pwr_led_activelow=off

# Disable the Activity LED
dtparam=act_led_trigger=default-o
dtparam=act_led_activelow=off

# Disable Ethernet port LEDs
dtparam=eth_led0=4
dtparam=eth_led1=4

This settings seem to work on several different CPUs and Raspbian releases (at least so far).