mir3c/squashfs-root/sbin/format_led

16 lines
167 B
Plaintext
Raw Normal View History

2018-05-25 08:49:31 +00:00
#!/bin/sh
# turn off yellow and red
gpio 1 1
gpio 2 1
while true
do
# turn on yellow
/usr/bin/gpio 2 0
sleep 1
#trun off yellow
/usr/bin/gpio 2 1
sleep 1
done