Skip to content

Commit 55fcfc6

Browse files
authored
Missed uploading config.h | Pull Request Fix
Relates to fixing espressif#11208
1 parent 4c89814 commit 55fcfc6

File tree

1 file changed

+38
-0
lines changed
  • libraries/ESP32/examples/Camera/CameraWebServer

1 file changed

+38
-0
lines changed
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
//
2+
// WARNING!!! PSRAM IC required for UXGA resolution and high JPEG quality
3+
// Ensure ESP32 Wrover Module or other board with PSRAM is selected
4+
// Partial images will be transmitted if image exceeds buffer size
5+
//
6+
// You must select partition scheme from the board menu that has at least 3MB APP space.
7+
// Face Recognition is DISABLED for ESP32 and ESP32-S2, because it takes up from 15
8+
// seconds to process single frame. Face Detection is ENABLED if PSRAM is enabled as well
9+
10+
// ===================
11+
// Select camera model (Uncomment only the desired model)
12+
// ===================
13+
//#define CAMERA_MODEL_WROVER_KIT // Has PSRAM
14+
#define CAMERA_MODEL_ESP_EYE // Has PSRAM
15+
//#define CAMERA_MODEL_ESP32S3_EYE // Has PSRAM
16+
//#define CAMERA_MODEL_M5STACK_PSRAM // Has PSRAM
17+
//#define CAMERA_MODEL_M5STACK_V2_PSRAM // M5Camera version B Has PSRAM
18+
//#define CAMERA_MODEL_M5STACK_WIDE // Has PSRAM
19+
//#define CAMERA_MODEL_M5STACK_ESP32CAM // No PSRAM
20+
//#define CAMERA_MODEL_M5STACK_UNITCAM // No PSRAM
21+
//#define CAMERA_MODEL_M5STACK_CAMS3_UNIT // Has PSRAM
22+
//#define CAMERA_MODEL_AI_THINKER // Has PSRAM
23+
//#define CAMERA_MODEL_TTGO_T_JOURNAL // No PSRAM
24+
//#define CAMERA_MODEL_XIAO_ESP32S3 // Has PSRAM
25+
// ** Espressif Internal Boards **
26+
//#define CAMERA_MODEL_ESP32_CAM_BOARD
27+
//#define CAMERA_MODEL_ESP32S2_CAM_BOARD
28+
//#define CAMERA_MODEL_ESP32S3_CAM_LCD
29+
//#define CAMERA_MODEL_DFRobot_FireBeetle2_ESP32S3 // Has PSRAM
30+
//#define CAMERA_MODEL_DFRobot_Romeo_ESP32S3 // Has PSRAM
31+
32+
33+
// ===========================
34+
// Enter your WiFi credentials (replace ******** for the proper values)
35+
// ===========================
36+
#define WIFI_SSID "********"
37+
#define WIFI_PASSWORD "********"
38+

0 commit comments

Comments
 (0)