The ESP32-CAM module is dedicated to camera readout. It provides
You find a detailed description of the pinout at https://randomnerdtutorials.com/esp32-cam-ai-thinker-pinout
The interface for the SD card:
GPIO | SD-card interface |
---|---|
SCK | GPIO 14 |
MISO | GPIO 2 |
MOSI | GPIO 15 |
CS (SS) | GPIO 13 |
The ESP32-CAM comes in a number of variants.
The original version has no USB connector and can only be controlled with a USB to serial adapter.
The connections to the USB to serial adapter are as follows:
ESP32-CAM | USB to serial |
---|---|
5V | 5V |
GND | GND |
UOR | Tx |
UOT | Rx |
The second variant comes with the ESP32-CAM-MB main board, which provides a micro USB connector.
The ESB32-CAM board, to be used with this main board, is slightly modified with respect to the original one:
![]() |
![]() |
The original ESP32-CAM | The ESP32-CAM modified to work with the main board |
In order to access REPL you must pull both DTR and RTS low. This can be done with gtkterm, which has buttons to toogle these lines, or you can use rshell with DTR and RTS set to "false":
export RSHELL_RTS="false"
export RSHELL_DTR="false"
When trying to run thonny you will hit the same problem. The new version of thonny (I use version 4.0.0-dev) however allows you to disable DTR and RTS in the file
$HOME/config/Thonny/configuration.ini. Just add the 2 lines setting DTR and RTS to False at the end of the file.
This model works similarly to the original version, but with the micro USB connector and a "flash button" already installed. A simple micro USB cable is needed for communication. In order to set the module to flash mode, hold the flash button while pushing the RST button.
The github repository esp32-who provides the esp32-cam driver, as well as a number of example programs. Before trying to integrate the driver into MicroPython I build the camera_web_server example and check that the hardware works correctly:
First configure the application with
idf.py menuconfig
In the Kconfig menu coming up you must
With these settings, we can build the application and flash it to the board.
idf.py build idf.py flash
After successful flashing connect minicom (or rshell in the case of the esp32-cam-mb) to the camera module and reset the machine.
Espressif provides an esp32-camera driver, which must be installed in the components folder of esp-idf. I downloaded it to the same level as esp-idf and micrropython and created a symbolic link to it in esp-idf/components. In order to make sure that the correct esp-idf is used for compilation, I wrote a little shell script setting up the correction environment:
As you can see, it points to the esp-idf to be used, and it makes sure that the correct idf.py, which is stored in esp-idf/tools, is found in the execution path.
Standard MicroPython uses all the SPIRAM for its heap. This results in an error when the esp32 camera driver tries to allocate space in SPIRAM for its image buffer. I therefore modified the MicroPython sources to keep some free space for the camera driver. Here is the part I modified in main.c. As you can see, 256 kBytes are reserved.
After this modification, you may follow the description in https://lemariva.com/blog/2020/06/micropython-support-cameras-m5camera-esp32-cam-etc (DIY from Scratch) for the modifications to lv_micropython needed in order to produce an interpreter with the camera driver included.
I | Attachment | History | Action | Size | Date | Who | Comment |
---|---|---|---|---|---|---|---|
![]() |
esp32-cam-gnd-r.png | r1 | manage | 257.5 K | 2021-10-21 - 08:54 | UliRaich | |
![]() |
esp32-cam-gnd.png | r1 | manage | 147.0 K | 2021-10-21 - 08:54 | UliRaich | |
![]() |
esp32-cam-mb.png | r1 | manage | 163.0 K | 2021-10-21 - 09:03 | UliRaich | |
![]() |
esp32-cam-standard.png | r1 | manage | 227.4 K | 2021-10-21 - 08:54 | UliRaich | |
![]() |
esp32-cam-usb | r1 | manage | 124.6 K | 2021-10-21 - 08:54 | UliRaich | |
![]() |
esp32-cam-usb.png | r1 | manage | 246.4 K | 2021-10-21 - 08:54 | UliRaich | |
![]() |
esp32-cam.png | r1 | manage | 358.6 K | 2021-10-21 - 08:54 | UliRaich | |
![]() |
esp32-cam_imgbuf.png | r1 | manage | 70.3 K | 2021-11-15 - 20:42 | UliRaich | |
![]() |
esp32-who.png | r1 | manage | 25.3 K | 2021-10-21 - 09:09 | UliRaich | |
![]() |
setupForCamera.png | r1 | manage | 22.4 K | 2021-10-21 - 09:57 | UliRaich | |
![]() |
thonny_mods.png | r1 | manage | 13.2 K | 2021-10-21 - 08:54 | UliRaich |