From 3ecc27fd3ee0422fb5325e3c93dcf6b74d8615b5 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 3 Nov 2025 17:42:39 +0100 Subject: [PATCH] update --- boot_hotspot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boot_hotspot.sh b/boot_hotspot.sh index 6d814f2..37edd8c 100755 --- a/boot_hotspot.sh +++ b/boot_hotspot.sh @@ -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