- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
ESP32-S3 Firmware Backup, Erase & Flash BIN File Using Python CMD (Step-by-Step Guide)
In this video, you will learn how to backup, erase, and flash firmware on ESP32-S3 using Python command line tools.
✔ Read and backup firmware (.bin) file from ESP32-S3
✔ Erase flash memory safely (chip erase)
✔ Flash BIN firmware back to ESP32-S3
✔ Using esptool with CMD (Python)
This method is useful for firmware recovery, cloning devices, and development testing.
⚠️ Always double-check COM port and chip type before flashing.
📌 Buy on Aliexpress:
🔗https://s.click.aliexpress.com/e/_c39xzW21
🔗https://s.click.aliexpress.com/e/_c4Ny08gl
🔗https://s.click.aliexpress.com/e/_c45pjrDL
🔗https://s.click.aliexpress.com/e/_c3Z25EgN
🔗https://s.click.aliexpress.com/e/_c4pzPx5b
📌 Buy on Amazon:
🔗https://amzn.to/3PwwkNr
🔗https://amzn.to/4szFkjD
🔗https://amzn.to/4szU5Ti
🔗https://amzn.to/4dbsVgU
🔗https://amzn.to/4lOPkmk
📌 Amazon Finds & Tools We Recommend
🛒 https://c8ke.com/yellowpurple
***********************************
That link is the official Python for Windows download page:
👉 https://www.python.org/downloads/windows/
What you should do (simple steps):
Open the link
Click “Download Windows installer (64-bit)” (recommended)
Wait for .exe file to download
Run the installer
IMPORTANT: Tick ✔ “Add Python to PATH”
Click Install Now
👉 Check if the installation was successful
py --version
👉 Now enter the following command to create a full flash backup
py -m esptool --chip esp32s3 --port COM16 read_flash 0 0x1000000 backup.bin
👉 Use the following command to find the backup file:
dir backup.bin
👉Backup.bin file should be 16 MB in size
👉 Flash the backup .bin file
py -m esptool --chip esp32s3 --port COM16 write_flash 0x0 backup.bin
👉 If the backup file is in another folder, use this command
py -m esptool --chip esp32s3 --port COM16 write_flash 0x0 "D:\ESP32\backup.bin
👉Before flashing, perform an optional chip erase:
py -m esptool --chip esp32s3 --port COM16 erase_flash
**************************************************
💬 LIKE | COMMENT | SHARE | SUBSCRIBE
🔥 Please support the channel by subscribing:
🔔 https://www.youtube.com/channel/UCNqYc-ojesF6AbXwiWdZbeg?sub_confirmation=1
━━━━━━━━━━━━━━━━━━
📺 Watch More DIY & Tech Videos:
🔹 Extend WiFi Range with Another Router (No Cable):
https://www.youtube.com/watch?v=_EpCRg5ggEs
🔹 Program ATtiny85 with Arduino Uno:
https://www.youtube.com/watch?v=BL1gI4AcMOA
🔹 TP-Link to Netgear Wireless Sharing (WDS Mode):
https://www.youtube.com/watch?v=9CS3xfIpK90
🔹 Sokoban Level 11 Solution:
https://www.youtube.com/watch?v=xvu6r5_4_T4
🔹 Arduino Ultrasonic Radar System DIY:
https://www.youtube.com/watch?v=l8PhAIYB8Us&t=34s
🔹 Connect Two Routers Wirelessly with WDS:
https://www.youtube.com/watch?v=X-LLl9OIXK8
🔹 Extend WiFi with Another Router (Easy Guide):
https://www.youtube.com/watch?v=wkyKX2ifPFo
━━━━━━━━━━━━━━━━━━
📩 Contact for Inquiries:
📧 Email: EmailForViewers@gmail.com
━━━━━━━━━━━━━━━━━━
🌟 Thank you for your support! 🌟
Видео ESP32-S3 Firmware Backup, Erase & Flash BIN File Using Python CMD (Step-by-Step Guide) канала Yellow Purple
✔ Read and backup firmware (.bin) file from ESP32-S3
✔ Erase flash memory safely (chip erase)
✔ Flash BIN firmware back to ESP32-S3
✔ Using esptool with CMD (Python)
This method is useful for firmware recovery, cloning devices, and development testing.
⚠️ Always double-check COM port and chip type before flashing.
📌 Buy on Aliexpress:
🔗https://s.click.aliexpress.com/e/_c39xzW21
🔗https://s.click.aliexpress.com/e/_c4Ny08gl
🔗https://s.click.aliexpress.com/e/_c45pjrDL
🔗https://s.click.aliexpress.com/e/_c3Z25EgN
🔗https://s.click.aliexpress.com/e/_c4pzPx5b
📌 Buy on Amazon:
🔗https://amzn.to/3PwwkNr
🔗https://amzn.to/4szFkjD
🔗https://amzn.to/4szU5Ti
🔗https://amzn.to/4dbsVgU
🔗https://amzn.to/4lOPkmk
📌 Amazon Finds & Tools We Recommend
🛒 https://c8ke.com/yellowpurple
***********************************
That link is the official Python for Windows download page:
👉 https://www.python.org/downloads/windows/
What you should do (simple steps):
Open the link
Click “Download Windows installer (64-bit)” (recommended)
Wait for .exe file to download
Run the installer
IMPORTANT: Tick ✔ “Add Python to PATH”
Click Install Now
👉 Check if the installation was successful
py --version
👉 Now enter the following command to create a full flash backup
py -m esptool --chip esp32s3 --port COM16 read_flash 0 0x1000000 backup.bin
👉 Use the following command to find the backup file:
dir backup.bin
👉Backup.bin file should be 16 MB in size
👉 Flash the backup .bin file
py -m esptool --chip esp32s3 --port COM16 write_flash 0x0 backup.bin
👉 If the backup file is in another folder, use this command
py -m esptool --chip esp32s3 --port COM16 write_flash 0x0 "D:\ESP32\backup.bin
👉Before flashing, perform an optional chip erase:
py -m esptool --chip esp32s3 --port COM16 erase_flash
**************************************************
💬 LIKE | COMMENT | SHARE | SUBSCRIBE
🔥 Please support the channel by subscribing:
🔔 https://www.youtube.com/channel/UCNqYc-ojesF6AbXwiWdZbeg?sub_confirmation=1
━━━━━━━━━━━━━━━━━━
📺 Watch More DIY & Tech Videos:
🔹 Extend WiFi Range with Another Router (No Cable):
https://www.youtube.com/watch?v=_EpCRg5ggEs
🔹 Program ATtiny85 with Arduino Uno:
https://www.youtube.com/watch?v=BL1gI4AcMOA
🔹 TP-Link to Netgear Wireless Sharing (WDS Mode):
https://www.youtube.com/watch?v=9CS3xfIpK90
🔹 Sokoban Level 11 Solution:
https://www.youtube.com/watch?v=xvu6r5_4_T4
🔹 Arduino Ultrasonic Radar System DIY:
https://www.youtube.com/watch?v=l8PhAIYB8Us&t=34s
🔹 Connect Two Routers Wirelessly with WDS:
https://www.youtube.com/watch?v=X-LLl9OIXK8
🔹 Extend WiFi with Another Router (Easy Guide):
https://www.youtube.com/watch?v=wkyKX2ifPFo
━━━━━━━━━━━━━━━━━━
📩 Contact for Inquiries:
📧 Email: EmailForViewers@gmail.com
━━━━━━━━━━━━━━━━━━
🌟 Thank you for your support! 🌟
Видео ESP32-S3 Firmware Backup, Erase & Flash BIN File Using Python CMD (Step-by-Step Guide) канала Yellow Purple
yellow purple yellowpurple ESP32-S3 esptool firmware backup esp32 flash esp32 bin file python esptool esp32 erase flash microcontroller IoT development embedded systems esp32 tutorial firmware dump esp32 programming ESP32 ESP32 tutorial ESP32 firmware ESP32 flash ESP32 bin file Python esptool firmware restore chip erase flash firmware IoT Arduino alternative serial COM port USB serial electronics project DIY electronics tech tutorial esp32s3
Комментарии отсутствуют
Информация о видео
20 ч. 33 мин. назад
00:04:12
Другие видео канала









