【Back Feb 24th!】Holiday from Feb 14-23. All orders placed now will ship starting Feb 24th.
#include <FS.h>
Serial.begin(115200);
bool success = SPIFFS.begin();
if(success){
Serial.println("File system mounted with success");
}else{
Serial.println("Error mounting the file system");
}
#include <FS.h>
void setup() {
Serial.begin(115200);
bool success = SPIFFS.begin();
if(success){
Serial.println("File system mounted with success");
}else{
Serial.println("Error mounting the file system");
}
}
void loop() {}