0
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?

ESP32-S2開発機で遊ぶ。(2.Lチカ)

0
Last updated at Posted at 2026-08-04

いろいろ注意

  • 過去ログを見よ!!!(何の?
  • 開発機は、秋月で売っている1,700円ぐらいのやつ
  • cp210xは、win10では、ちょっと、コツがいる

設定

Screenshot From 2026-08-05 06-46-43.png


https://espressif.github.io/arduino-esp32/package_esp32_index.json

Screenshot From 2026-08-05 07-54-34.png

結果

image_original(116).jpg

image_original(117).jpg

プログラム



//l_tika_test1_esp32s2_1

void setup() {
  pinMode(18, OUTPUT);       //RGB LED
  rgbLedWrite(18, 0, 0, 0);  //クリア
  delay(3);                  //ダミー
}

void loop() {
  rgbLedWrite(18, 64, 0, 0);  //red
  delay(1000);
  rgbLedWrite(18, 0, 0, 0);  //off
  delay(1000);
}


Screenshot From 2026-08-05 07-55-52.png

0
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
0
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?