(5)Start the First Program
We’ve known how to download and install the driver of development
board , next, we will burn a code to show“Hello World!”in the monitor.
void setup() {
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
}
void loop() {
// print out "Hello world!"
Serial.println("Hello world!");