-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Fix of Library/Example/ESP32/CameraWebServer - app_httpd.cpp's flash pinout declaration. #11209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
45 changes: 9 additions & 36 deletions
45
libraries/ESP32/examples/Camera/CameraWebServer/CameraWebServer.ino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// | ||
// WARNING!!! PSRAM IC required for UXGA resolution and high JPEG quality | ||
// Ensure ESP32 Wrover Module or other board with PSRAM is selected | ||
// Partial images will be transmitted if image exceeds buffer size | ||
// | ||
// You must select partition scheme from the board menu that has at least 3MB APP space. | ||
// Face Recognition is DISABLED for ESP32 and ESP32-S2, because it takes up from 15 | ||
// seconds to process single frame. Face Detection is ENABLED if PSRAM is enabled as well | ||
|
||
// =================== | ||
// Select camera model (Uncomment only the desired model) | ||
// =================== | ||
//#define CAMERA_MODEL_WROVER_KIT // Has PSRAM | ||
#define CAMERA_MODEL_ESP_EYE // Has PSRAM | ||
//#define CAMERA_MODEL_ESP32S3_EYE // Has PSRAM | ||
//#define CAMERA_MODEL_M5STACK_PSRAM // Has PSRAM | ||
//#define CAMERA_MODEL_M5STACK_V2_PSRAM // M5Camera version B Has PSRAM | ||
//#define CAMERA_MODEL_M5STACK_WIDE // Has PSRAM | ||
//#define CAMERA_MODEL_M5STACK_ESP32CAM // No PSRAM | ||
//#define CAMERA_MODEL_M5STACK_UNITCAM // No PSRAM | ||
//#define CAMERA_MODEL_M5STACK_CAMS3_UNIT // Has PSRAM | ||
//#define CAMERA_MODEL_AI_THINKER // Has PSRAM | ||
//#define CAMERA_MODEL_TTGO_T_JOURNAL // No PSRAM | ||
//#define CAMERA_MODEL_XIAO_ESP32S3 // Has PSRAM | ||
// ** Espressif Internal Boards ** | ||
//#define CAMERA_MODEL_ESP32_CAM_BOARD | ||
//#define CAMERA_MODEL_ESP32S2_CAM_BOARD | ||
//#define CAMERA_MODEL_ESP32S3_CAM_LCD | ||
//#define CAMERA_MODEL_DFRobot_FireBeetle2_ESP32S3 // Has PSRAM | ||
//#define CAMERA_MODEL_DFRobot_Romeo_ESP32S3 // Has PSRAM | ||
|
||
|
||
// =========================== | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This actually refers to line 33 onwards. Sorry for the mistake. Ended up moving |
||
// Enter your WiFi credentials (replace ******** for the proper values) | ||
// =========================== | ||
#define WIFI_SSID "********" | ||
#define WIFI_PASSWORD "********" | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the main change. The rest is structural to enable this change.