Arduino Sketches 1: Serial Print
Автор: Mark Lawry
Загружено: 2022-02-02
Просмотров: 903
Описание:
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()
{
Serial.begin(9600);
Serial.println("Hello World");
}
void loop()
{
Serial.println("Take me to your leader!");
delay(5000);
delay(10); // Delay a little bit to improve simulation performance
}
----------------------------------------------------------------
Повторяем попытку...
Доступные форматы для скачивания:
Скачать видео
-
Информация по загрузке: