added Arduino hello world

This commit is contained in:
mr.Shu
2012-04-29 11:38:20 +02:00
parent 38f6567c5c
commit 83391e87ff

11
a/arduino.ino Normal file
View File

@@ -0,0 +1,11 @@
void setup()
{
Serial.begin(9600);
Serial.println("Hello world!");
}
void loop()
{
}