1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Arduinoでシリアルに文字列を送信してシリアルに表示する

Last updated at Posted at 2020-08-10

SS 192.png シリアルに文字列を送ってシリアルに表示するだけ

やること

ArduinoでSerial.readStringUntil()を使うサンプルです。
このコマンドのおかげでコードが短くできます。

スケッチ

Arduino系

String A;

void setup() {
  Serial.begin(9600);//シリアル通信を開く
}

void loop() {
  if (Serial.available() > 0 ) { //「> 0」はなくても動く
    //シリアルデータを改行記号が現れるまでAに文字列として読み込む
    //0x0aは改行記号
    A = Serial.readStringUntil(0x0a);
    Serial.println(A);//それをシリアルに表示する
  }
}

使い方

実行してシリアルモニタから何か送信すると、それが画面にそのまま返されます。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?