Skip to content

Commit

Permalink
Merge pull request #40 from mrshu/arduino
Browse files Browse the repository at this point in the history
added Arduino hello world
  • Loading branch information
leachim6 committed Aug 18, 2014
2 parents ff7ff11 + 83391e8 commit 97da93f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions a/arduino.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

void setup()
{
Serial.begin(9600);
Serial.println("Hello world!");
}

void loop()
{

}

0 comments on commit 97da93f

Please sign in to comment.