This commit is contained in:
Your Name
2025-11-03 17:45:18 +01:00
parent 3ecc27fd3e
commit 5cf37c3cee

View File

@@ -18,12 +18,13 @@ chmod -R 777 /var/www/nebuleair_pro_4g/
# Blink GPIO 23 and 24 five times # Blink GPIO 23 and 24 five times
for i in {1..5}; do for i in {1..5}; do
# Turn GPIO 23 and 24 ON # Turn GPIO 23 and 24 ON
gpioset -b gpiochip0 23=1 24=1 gpioset gpiochip0 23=1
#echo "LEDs ON" gpioset gpiochip0 24=1 #echo "LEDs ON"
sleep 1 sleep 1
# Turn GPIO 23 and 24 OFF # Turn GPIO 23 and 24 OFF
gpioset -b gpiochip0 23=0 24=0 gpioset gpiochip0 23=0
gpioset gpiochip0 24=0
#echo "LEDs OFF" #echo "LEDs OFF"
sleep 1 sleep 1
done done