September 2016
Intermediate to advanced
495 pages
9h 37m
English
The easiest way to start working with Arduinos begins here. You'll learn how to output print statements. The Arduino uses a Serial Monitor for displaying information such as print statements, sensor data, and the like. This is a very powerful tool for debugging long codes. Now for your first code!
Open up the Arduino IDE and copy the following code into a new sketch:
void setup() {
Serial.begin(9600);
Serial.println("Hello World!");
}
void loop() {
}Open Tools | Board and choose Arduino UNO, as shown in the following screenshot:

Open Tools | Port and choose the appropriate port (remember the previous COM ...
Read now
Unlock full access