1
0
Fork 0

arduino-0018-linux-x64

This commit is contained in:
Eve Entropia 2010-03-30 20:09:55 +02:00
parent 8e4748e499
commit ed785c5798
426 changed files with 76732 additions and 0 deletions

View file

@ -0,0 +1,12 @@
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
int switchValue = digitalRead(2);
digitalWrite(13, switchValue);
}