mirror of
git://projects.qi-hardware.com/wernermisc.git
synced 2024-11-15 13:50:38 +02:00
13 lines
130 B
Bash
Executable File
13 lines
130 B
Bash
Executable File
#!/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
|