Search found 3 matches

by Daniel97
Fri Mar 27, 2020 5:06 pm
Forum: ESP32 boards
Topic: Long delays in handling "large" datasets
Replies: 4
Views: 2287

Re: Long delays in handling "large" datasets

I played around a bit and ended up using dhylands advice.
Runtime is about 15 times faster. Thanks guys
by Daniel97
Thu Mar 26, 2020 10:18 pm
Forum: ESP32 boards
Topic: Long delays in handling "large" datasets
Replies: 4
Views: 2287

Re: Long delays in handling "large" datasets

Thanks for your reply! I will try that out tomorrow.
by Daniel97
Thu Mar 26, 2020 7:12 pm
Forum: ESP32 boards
Topic: Long delays in handling "large" datasets
Replies: 4
Views: 2287

Long delays in handling "large" datasets

Hello everyone, I'm using a ESP32 to transmit serveral kB worth of sensor data via WiFi. I store these in a textfile where one line represents a sample: ... 22.5,42.0,1002.2,8.3 22.5,42.3,1002.2,8.3 22.5,42.5,1002.2,128.3 ... I need to push a fresh datavector on the file, while popping the oldest. M...