1.7 FIRST Arduino Project - Hello World
As any other programming languages, our first Arduino Project is also "Hello World", without hardware wiring. The code follows standard Arduino coding convention, namely, composed of a setup() function and a loop() function.
Sketch
The code can be found at Examples_Arduino - geek-workshop - studynotes - _001_HelloWorld - _001_HelloWorld.ino.
Verify & Compile
In Arduino IDe, to compile the above codes, click Sketch->Verify/Compile; to upload the code onto Arduino board afterwards, click Sketch->Upload.
Last updated