Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Integrating the camera driver into MicroPython.Programming the esp32-cam processor | ||||||||
Line: 13 to 13 | ||||||||
These will be the programming pins connected to USB to serial converter. | ||||||||
Added: | ||||||||
> > | ![]() | |||||||
Here are the connections:
| ||||||||
Line: 27 to 29 | ||||||||
https://iotworkshop.africa/pub/AFNOG/DriverIntegrationIntoNopMicroPython/ESP32_CAM_V1.6.pdf | ||||||||
Added: | ||||||||
> > | To flash a new program into the esp32 flash we must first connect GPIO 0 to ground, which can be done with a simple jumper. Then we can erase the flash with:
esptool erase_flash I give the command with power on the esp32-cam off and switch power on as soon as esptool tries to connect to the esp32 Finally we can flash the program: esptool write_flash --flash_size=detect --flash_mode dio 0x1000 binaryToBeFlashed Again I give the command with power to the esp32 off and switch power on as soon as esptool tries to connect to the esp32. This procedure will allow to flash our custom MicropPython with the camera driver installed. | |||||||
-- ![]()
Comments | ||||||||
Line: 37 to 53 | ||||||||
| ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | |||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Added: | |||||||||||||||||||||||||||
> > |
Integrating the camera driver into MicroPython.Programming the esp32-cam processorThe esp32-cam does not come with a serial USB interface as many other ESP32 processor boards do. This makes programming the device quite a bit more tricky.
Having a look at the pin-out we see that GPIO 1 and 3 are connected to UoTXD and U0RXD respectively.
These will be the programming pins connected to USB to serial converter. Here are the connections:
https://iotworkshop.africa/pub/AFNOG/DriverIntegrationIntoNopMicroPython/ESP32_CAM_V1.6.pdf
Comments
|