Search found 16 matches

by esp@esp@esp
Mon Aug 14, 2023 9:36 am
Forum: General Discussion
Topic: Esp32cam: I read String from SPIFFS but it is not accepted. Why ?
Replies: 4
Views: 1649

Re: Esp32cam: I read String from SPIFFS but it is not accepted. Why ?

Thanks for the answer. I take the opportunity to ask something else: When I do OTA I see progress evolve in the serial monitor according to the code below: // Callback - Progress Update.onProgress([](size_t progresso, size_t total) { Serial.print(progresso * 100 / total); }); But the 100% is relativ...
by esp@esp@esp
Thu Aug 10, 2023 10:44 am
Forum: General Discussion
Topic: Esp32cam: I read String from SPIFFS but it is not accepted. Why ?
Replies: 4
Views: 1649

Esp32cam: I read String from SPIFFS but it is not accepted. Why ?

Hello. I ask for help. I'm using the sendFile example from this library: https://github.com/GyverLibs/FastBot/tree/main But instead of having the BOT_TOKEN value as a #define, I intend to read the BOT_TOKEN from a .txt file inside LittleFS. For this I declared a global String bottokenstring; I comme...
by esp@esp@esp
Fri May 05, 2023 8:47 am
Forum: General Discussion
Topic: Is ESP-EYE autonomous ?
Replies: 16
Views: 6261

Re: Is ESP-EYE autonomous ?

Hey. I received my first Esp-Eye (not the S3) and I'm not sure what to do with it. I would like to test a face recognition system without an LCD and without using a computer. In which I could register my face and when checking my rest I could send some notification to a web server within my wifi net...
by esp@esp@esp
Mon Apr 24, 2023 10:46 am
Forum: ESP32 Arduino
Topic: POST request with PHOTO file in the body of the message. How to make ?
Replies: 3
Views: 2299

Re: POST request with PHOTO file in the body of the message. How to make ?

And truth. I had already tried HttpClient at the beginning of my journey. I will try again with her now encouraged by this good suggestion of yours.

Thanks
by esp@esp@esp
Fri Apr 21, 2023 10:07 pm
Forum: ESP32 Arduino
Topic: POST request with PHOTO file in the body of the message. How to make ?
Replies: 3
Views: 2299

Re: POST request with PHOTO file in the body of the message. How to make ?

Or else, can someone post a link that may have some example code different from mine? The camera output has to go in the body of the request

Thanks
by esp@esp@esp
Fri Apr 21, 2023 2:40 pm
Forum: ESP32 Arduino
Topic: POST request with PHOTO file in the body of the message. How to make ?
Replies: 3
Views: 2299

POST request with PHOTO file in the body of the message. How to make ?

Greetings. The relevant part of my code is this, already well known, which sends a photo from esp32cam to a website, server: camera_fb_t * fb = NULL; fb = esp_camera_fb_get(); if(!fb) { Serial.println("Camera capture failed"); delay(1000); ESP.restart(); } if (client.connect(host.c_str(), serverPort...
by esp@esp@esp
Thu Apr 20, 2023 10:53 am
Forum: General Discussion
Topic: Is ESP-EYE autonomous ?
Replies: 16
Views: 6261

Re: Is ESP-EYE autonomous ?

OK my friend, thank you very much. Based on the information I'll see if I can have an ESP-EYE on hand for testing. My biggest difficulty will be with ESP-IDF, until today I've only had contact with the Arduino IDE.

Health and peace.
by esp@esp@esp
Wed Apr 19, 2023 8:40 pm
Forum: General Discussion
Topic: Is ESP-EYE autonomous ?
Replies: 16
Views: 6261

Re: Is ESP-EYE autonomous ?

Perhaps the better-formulated question I should have asked from the beginning is this:

Without a stream, can ESP-EYE (not S3) store and then recognize faceID ?

Thanks
by esp@esp@esp
Wed Apr 19, 2023 10:44 am
Forum: General Discussion
Topic: Is ESP-EYE autonomous ?
Replies: 16
Views: 6261

Re: Is ESP-EYE autonomous ?

That friend, very grateful too much. Exactly this way. So only with the ESP-S3 is it possible to do this ? I mean, I don't have the need to see the face on a display. If showing the face on a display is just for visual confirmation from the user, I don't have that need. So couldn't the regular ESP-E...
by esp@esp@esp
Tue Apr 18, 2023 8:32 pm
Forum: General Discussion
Topic: Is ESP-EYE autonomous ?
Replies: 16
Views: 6261

Re: Is ESP-EYE autonomous ?

Sorry if I'm still confused, but everything I'm reading about ESP-EYE talks about stream, recording faces using stream. That is, being connected to a PC and accessing the webserver generated by ESP-EYE itself. All examples and tutorials are using PC. Exactly everyone. I couldn't find anywhere an exa...