This commit is contained in:
Your Name
2025-01-29 10:28:55 +01:00
parent 4a5e0b3577
commit 280dcd9be3
2 changed files with 7 additions and 3 deletions

View File

@@ -16,12 +16,12 @@ echo "NebuleAir pro started at $(date)"
for i in {1..5}; do
# Turn GPIO 23 and 24 ON
gpioset gpiochip0 23=1 24=1
echo "LEDs ON"
#echo "LEDs ON"
sleep 1
# Turn GPIO 23 and 24 OFF
gpioset gpiochip0 23=0 24=0
echo "LEDs OFF"
#echo "LEDs OFF"
sleep 1
done