This commit is contained in:
root
2025-11-03 17:42:39 +01:00
parent 072fca72cc
commit 3ecc27fd3e

View File

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