filmov
tv
Arduino Sketches 1: Serial Print
Показать описание
This video is one of a series reviewing the lessons from the Arduino Student Kit, designed for young students, to teach coding and electronics.
This particular video shows how to print text from the Arduino on the Serial Monitor.
The sketch used in this video is pasted below.
You can copy/paste the text between the lines either into the Arduino Integrated Development Environment or into the code section of TinkerCAD Circuits.
----------------------------------------------------------------
// C++ code
//
void setup()
{
}
void loop()
{
delay(5000);
delay(10); // Delay a little bit to improve simulation performance
}
----------------------------------------------------------------
This particular video shows how to print text from the Arduino on the Serial Monitor.
The sketch used in this video is pasted below.
You can copy/paste the text between the lines either into the Arduino Integrated Development Environment or into the code section of TinkerCAD Circuits.
----------------------------------------------------------------
// C++ code
//
void setup()
{
}
void loop()
{
delay(5000);
delay(10); // Delay a little bit to improve simulation performance
}
----------------------------------------------------------------