0Pricing
Arduino & IoT Academy · レッスン

IDEにESPボードを追加する

ボードパッケージをインストールし、チップを選択します。

「IDEにESPボードを追加する」はCoddyKit上の無料Arduino & IoT Academyレッスンです。 これはレッスン2/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはArduino & IoT Academy学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Arduino & IoT Academyコースには全4レッスンが含まれています。

このレッスンの一部はまだ翻訳されておらず、英語で表示されています。

The IDE Needs a Hint

Out of the box, the Arduino IDE only knows Arduino boards. To flash an ESP chip, you first teach the IDE where to find it. 🧩

Board Manager URLs

ESP support arrives through a Board Manager URL. It is a web link that tells the IDE where the board files live online.

Open Preferences

Start in File > Preferences. Near the bottom you will find the box labeled Additional Boards Manager URLs.

Paste the ESP32 URL

For the ESP32, paste Espressif's official package URL into that box. It points straight at the latest board definitions.

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

ESP8266 Has Its Own

Using an ESP8266 instead? It needs a different URL. You can list several in the box, separated by commas, and keep both.

http://arduino.esp8266.com/stable/package_esp8266com_index.json

Open Boards Manager

Now go to Tools > Board > Boards Manager. This is the catalog where every installable board package shows up.

Search for Your Chip

Type esp32 or esp8266 into the search field. The matching package appears, ready for you to install with one click.

Click Install

Press Install and wait. The IDE downloads the compiler and tools for your chip, which can take a minute on the first run.

Find Your Board in the List

After it finishes, reopen Tools > Board. A fresh section now lists your ESP boards alongside the classic Arduino ones.

Select the Exact Model

Pick the precise model, like ESP32 Dev Module or NodeMCU. Choosing the wrong variant is a top cause of upload failures.

Verify It Compiles

Open a blank sketch and hit Verify. If it compiles for your ESP, the toolchain installed correctly and you are ready to upload.

void setup() {}
void loop() {}

Quick Check

Where do you paste the ESP package link so the IDE can find the board?

Recap

You added the ESP Board Manager URL in Preferences, installed the package, and selected your exact chip. The IDE now speaks ESP. 🎉

よくある質問

「IDEにESPボードを追加する」レッスンは無料ですか?

はい。「IDEにESPボードを追加する」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Arduino & IoT Academyコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Arduino & IoT Academyコースには全4レッスンが含まれています。

「IDEにESPボードを追加する」で何を学びますか?

ボードパッケージをインストールし、チップを選択します。 ブラウザで直接実行するハンズオンコードでArduino & IoT Academyを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

Arduino & IoT Academyを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのArduino & IoT Academyは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン2/4です。

「IDEにESPボードを追加する」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このArduino & IoT Academyレッスンでコードを書いて実行できますか?

はい。すべてのArduino & IoT Academyレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. IoTにESP32とESP8266を使う理由
  2. IDEにESPボードを追加する
  3. ステーションモードでWiFiに接続する
  4. アクセスポイントの設定ページを動かす
← Arduino & IoT Academyに戻る