"File outputFile = SD.open(LOG_FILE, FILE_WRITE);"
With Arduino PCB, FILE_WRITE append the data
With ESP32 pcb, FILE_WRITE overwrite the data. FILE_APPEND append data
"File outputFile = SD.open(LOG_FILE, FILE_APPEND);"
"File outputFile = SD.open(LOG_FILE, FILE_WRITE);"
With Arduino PCB, FILE_WRITE append the data
With ESP32 pcb, FILE_WRITE overwrite the data. FILE_APPEND append data
"File outputFile = SD.open(LOG_FILE, FILE_APPEND);"