EasyManua.ls Logo

Eckstein komponente KS0530 - Start the First Program

Default Icon
160 pages
Print Icon
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
33
(5)Start the First Program
Weve known how to download and install the driver of development
board , next, we will burn a code to showHello 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!");