Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

This article is a Private article. Only a writer and users who know the URL can access it.
Please change open range to public in publish setting if you want to share this article with other users.

More than 1 year has passed since last update.

esp32 arduino バイナリ配布

0
Last updated at Posted at 2023-11-21

Windows版Pythonのインストール

書き込みには Pythonのインストールが 必要です。

次に esptoolのインストール

pip install esptool

image.png

image.png

image.png

 python.exe -m pip install --upgrade pip

本体 Firmware バージョン

image.png

ESP32S3Write(ダブルクリック)で 本体バージョンup実行

image.png

@echo off
Echo 使い方
Echo    1.ESP32をUSBでパソコンに接続する
Echo    2.USB Serialとして認識されるのでそのCOMNoを調べる
Echo	    コントロールパネル - デバイスマネージャー - ポート(COMとLPT) にCOMNoが出てくる
Echo    3. ESP32Write.batをダブルクリックして起動する
Echo	    3-1. "COM No Input=" と表示が出るので、COMNoの数字部分を入力してenterを押す( "COM12"なら"12"を入力)
Echo    4. 書き込み処理が開始され、終わると 
Echo             "続行するには何かキーを押してください・・・”と表示されるので何か入力すると窓が閉じる
Echo    5. 書き込みが完了するとESP32に書き込んだプログラムが自動で実行される
Echo.
Echo.
set /P COMNo="COM No Input = "
Echo.
for %%A in (*.bin) do (
    Echo wirte file = %%A 
    Echo.
esptool --port COM%COMNo% --baud 921600 ^
     --chip esp32s3  --before default_reset --after hard_reset ^
     write_flash -z --flash_mode dio --flash_freq 80m --flash_size detect ^
     0x10000 ./%%A)
    
 pause

@echo off

SerialCOMで 接続後 バージョン確認

SW8本体 1と2のスイッチを同時に押しますと再起動し以下のようにVerが表示されます。

image.png

参考

メモ

2.08 エラー
image.png

image.png

https://dl.espressif.com/dl/package_esp32_index.json
https://files.seeedstudio.com/arduino/package_seeeduino_boards_index.json
https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json
https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/arduino/package_m5stack_index.json

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?