From 5cf37c3cee307f398933f43acd1ae3a58c3f77a9 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 3 Nov 2025 17:45:18 +0100 Subject: [PATCH] update --- boot_hotspot.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/boot_hotspot.sh b/boot_hotspot.sh index 37edd8c..1e7d26b 100755 --- a/boot_hotspot.sh +++ b/boot_hotspot.sh @@ -18,12 +18,13 @@ 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 -b gpiochip0 23=1 24=1 - #echo "LEDs ON" + gpioset gpiochip0 23=1 + gpioset gpiochip0 24=1 #echo "LEDs ON" sleep 1 # Turn GPIO 23 and 24 OFF - gpioset -b gpiochip0 23=0 24=0 + gpioset gpiochip0 23=0 + gpioset gpiochip0 24=0 #echo "LEDs OFF" sleep 1 done