Arduino で HelloWorld
1383 ワード
Arduino で Hello World を行う方法です。
ボーレートは 19200 にしました。
プログラム
hello_world/hello_world.ino
// ---------------------------------------------------------------------
/*
hello_world.ino
Aug/15/2021
*/
// ---------------------------------------------------------------------
int count = 0;
void setup()
{
// put your setup code here, to run once:
Serial.begin(19200);
Serial.println("*** start ***");
}
// ---------------------------------------------------------------------
void loop()
{
Serial.println("Hello World! " + String(count));
delay(1000);
Serial.println("Good Morning! " + String(count));
delay(1000);
Serial.println("こんにちは " + String(count));
delay(1000);
count++;
}
// ---------------------------------------------------------------------
Author And Source
この問題について(Arduino で HelloWorld), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/2c0bbec3c6e0fa2f6b84著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .