Use this tutorial for installation the uPython on the MADE4HOME
- On windows
- Erase the chip
call C:\Users\<user_name>\Documents\Python\esptool\.venv\Scripts\python -m esptool --chip esp32 --port COM11 erase_flash- Flash the chip
call C:\Users\<user_name>\Documents\Python\esptool\.venv\Scripts\python -m esptool --chip esp32 --port COM11 --baud 460800 write_flash -z 0x1000 C:\Users\User\Documents\Python\esptool\uPython\ESP32_GENERIC-20231005-v1.21.0.bin- On linux
- Erase the chip
python -m esptool --chip esp32 --port /dev/ttyUSB0 erase_flash- Flash the chip
python -m esptool --chip esp32 --port /dev/ttyUSB0 --baud 460800 write_flash -z 0x1000 esp32-20190125-v1.10.bin- Download Thony IDE