RED HAT
DIIDevHeads IoT Integration Server
•Created by wafa_ath on 7/2/2024 in #firmware-and-baremetal
I need a MicroPython firmware for the ESP32-S2 AI Thinker CAM
Hi @wafa_ath for your request, you might not find a pre-built firmware directly from the official MicroPython repository. but you can build it yourself. The ESP32-S2 has TensorFlow Lite Micro support, so you can include it in your MicroPython build, by:
Install the ESP-IDF (Espressif IoT Development Framework).
Install the required tools for building MicroPython (make, gcc, etc.).
Clone the MicroPython Repository:
Navigate to the ports/esp32 directory.
Edit the
mpconfigport.h
file to include TensorFlow Lite Micro support.
Build the firmware:
Use esptool.py
to flash the firmware onto your ESP32-S2
You can find detailed instructions in the MicroPython documentation and ESP-IDF documentation.4 replies