Skip to content
This repository has been archived by the owner on Jan 1, 2019. It is now read-only.

Commit

Permalink
wrote hello world in arduino programming language
Browse files Browse the repository at this point in the history
  • Loading branch information
ParthGoyal1508 authored Oct 29, 2017
1 parent 1808415 commit 37b49bf
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions hello_world.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Hello world in the Arduino programming language

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

void loop()
{

}

0 comments on commit 37b49bf

Please sign in to comment.