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?

M5stack StampS3を買ったのでシリアルで遊ぶ。(ESP32-S3)

Last updated at Posted at 2024-03-29

目的
シリアルで遊ぶ

参考

結果(内蔵シリアルが動いたのでとりあえず成功)

o_coq002.jpg

サンプルをそのまま


void setup() {
  Serial.begin(115200);
  Serial1.begin(115200, SERIAL_8N1, 44, 43);
}

void loop() {
  Serial.println("Serial0");
  Serial1.println("Serial1");
  delay(1000);
}

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?