1
0
Fork 0

add arduino-0018-linux (32 bit)

This commit is contained in:
entropia 2010-03-31 21:11:30 +02:00
parent 7fa52a235a
commit 297de2a227
425 changed files with 64818 additions and 0 deletions

View file

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