Readme updates

master
Anatoli Arkhipenko 4 years ago
parent fd4b6aade2
commit 67e7c8a932

@ -8,25 +8,39 @@
2. unzip using `unzip -j esp32-cam-master.zip` command. This will place all files in the same folder
**NOTE:** please observe the `-j` flag: the sketch assumes all files are in the same folder.
3. In **esp32-cam.ino** sketch select your camera pin assignment. The choices are:
1. CAMERA_MODEL_WROVER_KIT
2. CAMERA_MODEL_ESP_EYE
3. CAMERA_MODEL_M5STACK_PSRAM
4. CAMERA_MODEL_M5STACK_WIDE
5. CAMERA_MODEL_AI_THINKER
4. Compile the **esp32-cam.ino** sketch using the following settings:
In **esp32-cam.ino** sketch select your camera pin assignment.
The choices are:
- CAMERA_MODEL_WROVER_KIT
- CAMERA_MODEL_ESP_EYE
- CAMERA_MODEL_M5STACK_PSRAM
- CAMERA_MODEL_M5STACK_WIDE
- CAMERA_MODEL_AI_THINKER
Compile the **esp32-cam.ino** sketch using the following settings:
- ESP32 Dev Module
- CPU Freq: 240
- Flash Freq: 80
- Flash mode: QIO
- Flash Size: 4Mb
- Partition: Minimal SPIFFS (or any other that would fit the sketch)
- PSRAM: Enabled
ESP32 Dev Module
CPU Freq: 240
Flash Freq: 80
Flash mode: QIO
Flash Size: 4Mb
Partition: Minimal SPIFFS (or any other that would fit the sketch)
PSRAM: Enabled
### Results:

@ -449,10 +449,10 @@ void setup()
.pixel_format = PIXFORMAT_JPEG,
// .frame_size = FRAMESIZE_QVGA,
.frame_size = FRAMESIZE_UXGA,
// .frame_size = FRAMESIZE_UXGA,
// .frame_size = FRAMESIZE_SVGA,
// .frame_size = FRAMESIZE_QVGA,
// .frame_size = FRAMESIZE_VGA,
.frame_size = FRAMESIZE_VGA,
.jpeg_quality = 12,
.fb_count = 2
};
@ -499,7 +499,6 @@ void setup()
APP_CPU);
}
void loop() {
// loop() runs in the RTOS Idle Task.
// If loop has a chance to run, there is nothing else for the CPU to do

Loading…
Cancel
Save