Search found 3 matches

by solisqq
Fri Mar 26, 2021 5:29 pm
Forum: General Discussion
Topic: [SOLVED] ESP32 Cam - corrupted big images
Replies: 3
Views: 8211

Re: ESP32 Cam - corrupted big images

I was using GPIO16 which is being used by PSRAM aswell. It was pretty hard to find this bug as most of the program worked...
Please close...
by solisqq
Fri Mar 26, 2021 10:06 am
Forum: General Discussion
Topic: [SOLVED] ESP32 Cam - corrupted big images
Replies: 3
Views: 8211

Re: ESP32 Cam - corrupted big images

Ok now I can at least see where the problem is, Ive made short test: unsigned int count = img->len; for (int i = count - 4; i < count; i++) { Serial.print(img->buf[i], HEX); Serial.print(" "); } client.write(img->buf, img->len); client.flush(); Serial.println(""); for (int i = count - 4; i < count; ...
by solisqq
Tue Mar 23, 2021 1:22 am
Forum: General Discussion
Topic: [SOLVED] ESP32 Cam - corrupted big images
Replies: 3
Views: 8211

[SOLVED] ESP32 Cam - corrupted big images

Hi, Im up to get an image from camera to ESP32-CAM and send it via TCP to my PC. This works fine as long as picture is not too big. If I go any higher than SVGA and quality=6 I get corrupted JPEG. Ive tested a lot of solutions from this site (and not only) without success. I suspect the problem is w...