mirror of
https://github.com/jayofelony/pwnagotchi.git
synced 2025-12-23 15:37:45 -08:00
13 lines
205 B
Bash
Executable File
13 lines
205 B
Bash
Executable File
#!/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
|