But
Code: Select all
sprintf(buffer, "%.2f",...)
Code: Select all
dtostrf()
On the other hand, I'm more worried about the RAM taken up: about 50 kB for the whole CSV
Code: Select all
sprintf(buffer, "%.2f",...)
Code: Select all
dtostrf()
Thanks but... datas are in RAM : I have a array to store them :
Code: Select all
struct SDATA {
float temp;
long tmillis;
};
SDATA TabMesures[3600];
That's fine ! Thanks a lot... I'll be back for further questionslbernstone wrote: ↑Sat Apr 22, 2023 6:03 pmIn 1.8, place the jar file in ~/Arduino/tools/ESP32FS/tool.