0
1

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 1 year has passed since last update.

esptoolでESP32にファームウェアを書き込む方法

Last updated at Posted at 2022-11-01

はじめに

windowsを使っている人だと, 最初使うであろうIDE 「uPyCraft」ですが, いろいろと不調が起こりやすく使いにくい。
なので今回は, esptoolコマンドを使ったESP32のセットアップを説明します。

準備

pythonのpipインストールを使い, esptoolコマンドをインストールします。

・pythonのインストール

image.png

Menuの「Downloads」にホバーし, 「Python3.11.0」をクリック
詳しい手順↓
https://www.python.jp/install/windows/install.html

・esptoolのインストール
pip install esptool

ESP32にファームウェアをインストール

  1. ESP32とPCをシリアル接続します

  2. windowsボタンを右クリックし, デバイスマネージャを表示

  3. COM<番号>を確認
     image.png

  4. Firmware最新版をダウンロード
    https://micropython.org/download/esp32/

  5. コマンドプロンプトで, firmwareをダウンロードしたフォルダへ移動

  6. esptoolコマンドで, firmwareを書き込み
    今回変更する場所は, COM<番号>くらいですね

esptool --chip esp32 --port COM<番号> write_flash -z 0x1000 esp32-20220618-v1.19.1.bin

 ・ --chip ...チップの種類を選択
 ・--port ...ポートを選択
 ・write_frash ...書き込みを行う
 ・-z 0x1000 ...書き込み場所を選択
7. コマンドを実行
原則, コマンドを実行したらESP32の「Boot」ボタン(ENじゃない方)を押下します。これで書き込みが行われます

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?