mirror of
https://github.com/arkhipenko/esp32-mjpeg-multiclient-espcam-drivers.git
synced 2025-01-09 09:31:20 +01:00
Readme updates
This commit is contained in:
parent
fd4b6aade2
commit
67e7c8a932
2 changed files with 72 additions and 59 deletions
42
README.md
42
README.md
|
@ -8,25 +8,39 @@
|
||||||
|
|
||||||
2. unzip using `unzip -j esp32-cam-master.zip` command. This will place all files in the same folder
|
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.
|
**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:
|
### Results:
|
||||||
|
|
||||||
|
|
|
@ -449,10 +449,10 @@ void setup()
|
||||||
.pixel_format = PIXFORMAT_JPEG,
|
.pixel_format = PIXFORMAT_JPEG,
|
||||||
|
|
||||||
// .frame_size = FRAMESIZE_QVGA,
|
// .frame_size = FRAMESIZE_QVGA,
|
||||||
.frame_size = FRAMESIZE_UXGA,
|
// .frame_size = FRAMESIZE_UXGA,
|
||||||
// .frame_size = FRAMESIZE_SVGA,
|
// .frame_size = FRAMESIZE_SVGA,
|
||||||
// .frame_size = FRAMESIZE_QVGA,
|
// .frame_size = FRAMESIZE_QVGA,
|
||||||
// .frame_size = FRAMESIZE_VGA,
|
.frame_size = FRAMESIZE_VGA,
|
||||||
.jpeg_quality = 12,
|
.jpeg_quality = 12,
|
||||||
.fb_count = 2
|
.fb_count = 2
|
||||||
};
|
};
|
||||||
|
@ -499,7 +499,6 @@ void setup()
|
||||||
APP_CPU);
|
APP_CPU);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void loop() {
|
void loop() {
|
||||||
// loop() runs in the RTOS Idle Task.
|
// loop() runs in the RTOS Idle Task.
|
||||||
// If loop has a chance to run, there is nothing else for the CPU to do
|
// If loop has a chance to run, there is nothing else for the CPU to do
|
||||||
|
|
Loading…
Reference in a new issue