Merge pull request #40 from mrshu/arduino

added Arduino hello world
This commit is contained in:
Mike Donaghy
2014-08-17 22:53:36 -04:00

11
a/arduino.ino Normal file
View File

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