mirror of
git://projects.qi-hardware.com/wernermisc.git
synced 2024-11-15 20:20:37 +02:00
13 lines
130 B
Plaintext
13 lines
130 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
n=0
|
||
|
while true; do
|
||
|
n=`expr $n + 1`
|
||
|
echo ===== $n =====
|
||
|
|
||
|
labsw ch1=0 ch2=0
|
||
|
sleep 5
|
||
|
labsw ch1=1 ch2=1
|
||
|
sleep 2
|
||
|
done
|