jameszah / ESP32-CAM-Video-Recorder-junior

Simple fast version of ESP32-CAM-Video-Recorder
GNU General Public License v3.0
280 stars 54 forks source link

Make it work with ESP32S3 model #31

Open FrancescoMontedori opened 1 year ago

FrancescoMontedori commented 1 year ago

Hi, and thanks for sharing your project. I was able to make this sketch work on ESP32 CAM and it worked like a charm. However i would like to try to use this sketch on the ESP32S3 CAM. Have you ever tryed to upload the code on the ESP32S3 CAM? I just tryed to upload the same code i uploaded to the ESP32 CAM but, as i expected, i receive this error:

as

My guess is that the SD card PIN on ESP32S3 CAM are different from the pin used in the ESP32 CAM, do you think that this could be the problem? In that case, which are the PIN used for the SD card in your sketch?

Sorry for the dumb question but I am quite new to C programming.

jameszah commented 1 year ago

Do you have a link to that device? Schematic?

FrancescoMontedori commented 1 year ago

Hi, thanks. I attach the board schematic:

ESP32S3_Pinout

johnmcginn1 commented 1 year ago

Hi,

I would also like to know if its possible to use the code on ESP32S3 CAM or any other ESP device? Should the code be change and which parts should be changed? Also new to programming.

Thank you for your project so far!

UserID161 commented 4 months ago

The error says that the Pin has not been initialized, at the beginning of the program, add

define SD_MMC_CMD 38 //Please do not modify it.

define SD_MMC_CLK 39 //Please do not modify it.

define SD_MMC_D0 40 //Please do not modify it.

To the function static esp_err_t init_sdcard() add a line SD_MMC.setPins(SD_MMC_CLK, SD_MMC_CMD, SD_MMC_D0); before opening the SD card

jameszah commented 4 months ago

https://github.com/espressif/arduino-esp32/tree/master/libraries/SD_MMC#pin-assignments-for-esp32-s3

That does not happened automatically with the correct arduino board library??? Which board library are you using?