Search found 2 matches

by Syahrul012
Sun Apr 24, 2022 3:15 pm
Forum: Hardware
Topic: ESP32-CAM - How to use OV2640 camera without PSRAM
Replies: 1
Views: 2492

Re: ESP32-CAM - How to use OV2640 camera without PSRAM

Never mind, I found the solution by looking into the esp_camera.h esp_camera.h library myself. Turns out there is a configuration variable for this. In the struct I found, fb_location[code]. I guess it defaults to saving the frame buffers to PSRAM, [code]CAMERA_FB_IN_PSRAM . It can be configured to ...
by Syahrul012
Sun Apr 24, 2022 1:48 am
Forum: Hardware
Topic: ESP32-CAM - How to use OV2640 camera without PSRAM
Replies: 1
Views: 2492

ESP32-CAM - How to use OV2640 camera without PSRAM

I'm using ESP32-CAM with Arduino IDE and have been using it to program a camera web server, I have been thinking of making a smaller version of it for a project. I'm planning to exclude PSRAM from the circuit since I found out it was meant for higher quality frame size for the OV2640 camera. So to t...