mirror of
https://github.com/jayofelony/pwnagotchi.git
synced 2025-07-01 18:37:27 -04:00
10 lines
201 B
Plaintext
10 lines
201 B
Plaintext
![]() |
#!/usr/bin/env bash
|
||
|
for i in $(seq 1 "$1");
|
||
|
do
|
||
|
echo 0 >/sys/class/leds/led0/brightness
|
||
|
sleep 0.3
|
||
|
echo 1 >/sys/class/leds/led0/brightness
|
||
|
sleep 0.3
|
||
|
done
|
||
|
echo 0 >/sys/class/leds/led0/brightness
|
||
|
sleep 0.3
|