Search found 4 matches

by elcrcp
Sun Apr 03, 2022 12:32 am
Forum: ESP32 Arduino
Topic: ESP32 Wrover not booting
Replies: 7
Views: 6928

Re: ESP32 Wrover not booting

Hello, the behavior you described is normal for a newly bought module. I can't say for sure but I believe it is working fine. As for pin statuses, there are 6 pins you definitely shouldn't connect and these are GPIO 6 to 11, I suggest connecting EN pin to a button with pull-up for reset function. La...
by elcrcp
Mon Mar 28, 2022 5:33 pm
Forum: ESP32 Arduino
Topic: Is there a way to improve POST request speed?
Replies: 4
Views: 3211

Re: Is there a way to improve POST request speed?

Actually what I thought was "it gonna read all the data from spi anyway how it could change the time", But it did and drastically did. I changed my code as to load more bulk data in each print command and data upload time reduced to 20 secs. Here are test results; Transferred Data Size ; 3278932 Byt...
by elcrcp
Fri Mar 25, 2022 11:03 am
Forum: ESP32 Arduino
Topic: Is there a way to improve POST request speed?
Replies: 4
Views: 3211

Re: Is there a way to improve POST request speed?

Rearrange your data structure so you have all the common descriptor stuff at the top, and then use two arrays for all your elements. That way you only send the verbose stuff once, skip the sequencing, and can post the whole thing in one single transaction. { "Sensor type":"sensor", "Sensitivity:"bl...
by elcrcp
Thu Mar 24, 2022 3:06 pm
Forum: ESP32 Arduino
Topic: Is there a way to improve POST request speed?
Replies: 4
Views: 3211

Is there a way to improve POST request speed?

Hello guys and thanks in advance for any reply, I'm currently working on a project and using an ESP32-Wrover for that purpose. What I do is simply getting readings from a sensor and storing them to PSRAM, 2Byte x 1.200.000 readings per try. Then I upload them to server ( I'm using a simple server sc...