Initial move to GIT

This commit is contained in:
Gordon Henderson
2012-08-16 15:04:43 +01:00
commit bf0ad86017
37 changed files with 5334 additions and 0 deletions

23
gpio/test.sh Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
# Simple test - assumes LEDs on Pins 0-7.
for i in `seq 0 7`;
do
gpio mode $i out
done
while true;
do
for i in `seq 0 7`;
do
gpio write $i 1
sleep 0.1
done
for i in `seq 0 7`;
do
gpio write $i 0
sleep 0.1
done
done