Installing on ESP32
The easiest way to install on the ESP32 is using the webinstaller, of course.
But if you need to install a version that's not available there, or you built your own, then you can manually install it on an ESP32 device.
-
Get the firmware
-
Put the ESP32 in Bootloader Mode
If you're already in MicroPythonOS: go to Settings - Restart to Bootloader - Bootloader - Save.
Otherwise, physically keep the "BOOT" (sometimes labeled "START") button pressed while powering up the board. This is explained in more detail at the webinstaller
-
Flash the firmware
~/.espressif/python_env/idf5.2_py3.9_env/bin/python -m esptool --chip esp32s3 write_flash 0 firmware_file.binAdd the
--erase-alloption if you want to erase the entire flash memory, so that no old files or apps will remain.There's also a convenient
./scripts/flash_over_usb.shscript that will attempt to flash the latest firmware that you compiled yourself. -
Access the MicroPython REPL shell
After reset, the REPL shell should be available on the serial line.
Any serial client will do, but it's convenient to use the
mpremote.pytool that's shipped with lvgl_micropython:lvgl_micropython/lib/micropython/tools/mpremote/mpremote.py -
Populate the filesystem (only for development)
In development, you probably want to override the "frozen" libraries and apps that are compiled in, and replace them with source files, which you can edit.
There's a convenient script that will do this for you.
Usage:
./scripts/install.shExample:
./scripts/install.sh
Notes
- Ensure your ESP32 is compatible (see Supported Hardware). If it's not, then you might need the Porting Guide.