This is just for ESP32S3 Wroom-1. Wroom and Wroom-1 has a different solution.
I just purchased this one 2024 fall.The camera module is newer one. So esp32-dev-module doesn't work.
I enjoyed this camera module alone while I was building wifi web server. So, when it comes to make this smart car today, I had to upload the original code to this camera module.
1. download their newer code from their google drive.
program for camera module.zip - Google Drive
program for camera module.zip
drive.google.com
2. I selected
ESP32-S3-WROOM-1-Camera -> channel9
and load the ino file to Arduino. And in Arduino, some setting is nessessary as following.
// WARNING!!! Make sure that you have selected Board ---> ESP32S3 Dev Module
// USB CDC On Boot ---> Enabled
// Flash Size ---> 8MB(64Mb)
// Partition Scheme ---> 8M with spiffs (3MB APP/1.5MB SPIFFS)
// PSRAM ---> OPI PSRAM
2A. Of course, on Board Manager, I reinstalled 'esp32 v3.0.7'.
if some error occured (related to ledcSetup...), You need to change the code as below.
ledcAttach(pin, 5000, 8);
// ledcSetup(LED_LEDC_CHANNEL, 5000, 8);
// ledcAttachPin(pin, LED_LEDC_CHANNEL);
Recently, 'ledcSetup' and 'ledcAttachPin' function was removed and interegrated as 'ldecAttach' as above.
5000 means the frequency and 8 means the resolution.
**
2024.01.25 updated FAQ will be helpful.
"If you have the ESP32-S3-WROOM-1 module, please install version 2.0.14."