Comments on: ESP32-CAM HTTP POST Photos to Local or Cloud Server using PHP and Arduino IDE https://randomnerdtutorials.com/esp32-cam-http-post-php-arduino/ Learn ESP8266, ESP32, Arduino, and Raspberry Pi Thu, 25 Jul 2024 20:23:25 +0000 hourly 1 https://wordpress.org/?v=6.8.2 By: Pius https://randomnerdtutorials.com/esp32-cam-http-post-php-arduino/#comment-941843 Thu, 25 Jul 2024 20:23:25 +0000 https://randomnerdtutorials.com/?p=97955#comment-941843 Thanks, this really came through for a recent project of mine, I needed to send photo to a flask server.

]]>
By: Konsalik https://randomnerdtutorials.com/esp32-cam-http-post-php-arduino/#comment-903313 Thu, 04 Apr 2024 22:30:00 +0000 https://randomnerdtutorials.com/?p=97955#comment-903313 Hello,

Great tutorials, muito obrigado!!
So if I adjust the frame size my camera just crashed,

config.frame_size = FRAMESIZE_XGA;
config.jpeg_quality = 60; //0-63 lower number means higher quality
config.fb_count = 1;

so only changing to lower resolution FRAMESIZE_SVGA it works, but its not 800x

Debugging:
SP32-CAM IP Address: 192.168.100.48
FRAMESIZE_XGAE (1183) camera: Camera probe failed with error 0x105(ESP_ERR_NOT_FOUND)
Camera init failed with error 0x105ets Jul 29 2019 12:21:46

rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:1
load:0x3fff0030,len:1184
load:0x40078000,len:13260
load:0x40080400,len:3028
entry 0x400805e4

Is this a hardware limitation?

Obrigado,

]]>
By: Sara Santos https://randomnerdtutorials.com/esp32-cam-http-post-php-arduino/#comment-896477 Tue, 05 Mar 2024 11:22:41 +0000 https://randomnerdtutorials.com/?p=97955#comment-896477 In reply to Firdosh.

Hi.
Try to combine with this project: https://randomnerdtutorials.com/esp32-cam-pir-motion-detector-photo-capture/
Regards,
Sara

]]>
By: Firdosh https://randomnerdtutorials.com/esp32-cam-http-post-php-arduino/#comment-896466 Tue, 05 Mar 2024 09:10:06 +0000 https://randomnerdtutorials.com/?p=97955#comment-896466 Hi thanks for all the great tutorials, how to do this with motion detection? instead of sending pics every 30 seconds. Thanks

]]>
By: Water Wizard https://randomnerdtutorials.com/esp32-cam-http-post-php-arduino/#comment-880556 Thu, 28 Dec 2023 14:50:24 +0000 https://randomnerdtutorials.com/?p=97955#comment-880556 In reply to Satheesh C.

Thank you this solved the problem, you are a star

]]>
By: Benjamin https://randomnerdtutorials.com/esp32-cam-http-post-php-arduino/#comment-862509 Tue, 26 Sep 2023 08:21:39 +0000 https://randomnerdtutorials.com/?p=97955#comment-862509 In reply to Daniel.

Hello…were you able to solve the issue. I am experiencing a similar problem

]]>
By: Edu https://randomnerdtutorials.com/esp32-cam-http-post-php-arduino/#comment-831991 Tue, 25 Apr 2023 20:31:43 +0000 https://randomnerdtutorials.com/?p=97955#comment-831991 I am trying to create the solution instead of using php, using node. And I am not able to:

I have a node js script:
http.createServer((request, response) => {
const { headers, method, url } = request;
let body = [];
request.on(‘error’, (err) => {
Log.error(“Error in server: ” + error);
}).on(‘data’, (chunk) => {
body.push(chunk);
}).on(‘end’, () => {

if (url == '/service') {
const file = fs.createWriteStream('esp32-cam.jpg');
response.pipe(file);
file.on('finish', () => {
file.close();
console.log(`Image downloaded`);
});
}
}}

);
}).listen(port);

Could you please help me?

]]>
By: ryan https://randomnerdtutorials.com/esp32-cam-http-post-php-arduino/#comment-831780 Mon, 24 Apr 2023 19:09:18 +0000 https://randomnerdtutorials.com/?p=97955#comment-831780 Hi, for some reason when I upload the code to my esp32 it just says connecting to internet and then does an endless line of ……

On the same board I used a different sketch that connects to wifi so I know the board is ok I’ve triple checked that I have the right wifi name and password, any idea?

Ryan

]]>
By: Sara Santos https://randomnerdtutorials.com/esp32-cam-http-post-php-arduino/#comment-828126 Mon, 03 Apr 2023 15:58:59 +0000 https://randomnerdtutorials.com/?p=97955#comment-828126 In reply to JB.

Thank you so much!

]]>
By: JB https://randomnerdtutorials.com/esp32-cam-http-post-php-arduino/#comment-828103 Mon, 03 Apr 2023 11:24:26 +0000 https://randomnerdtutorials.com/?p=97955#comment-828103 In reply to Sara Santos.

Hi Sara.
I’d like to give you and Rui a big thanks,
for all the work you put into your tutorials.

]]>