mirror of
https://github.com/jayofelony/pwnagotchi.git
synced 2025-07-01 18:37:27 -04:00
13 lines
197 B
Bash
Executable File
13 lines
197 B
Bash
Executable File
#!/bin/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
|