dumped all my old arduino stuff in here.

This commit is contained in:
Johannes Findeisen 2015-08-15 23:03:28 +02:00
commit 8f8959b76f
76 changed files with 8127 additions and 2 deletions

View file

@ -0,0 +1,14 @@
void setup()
{
Serial.begin(9600); // USB is always 12 Mbit/sec
}
void loop()
{
digitalWrite(13, HIGH);
Serial.println("Hello World...");
delay(1000);
digitalWrite(13, LOW);
//Serial.println("Hello World...");
delay(1000);
}