clearESP.ino 200 B

123456789101112
  1. #include <FS.h>
  2. void setup() {
  3. // put your setup code here, to run once:
  4. SPIFFS.format();
  5. ESP.eraseConfig();
  6. ESP.reset();
  7. }
  8. void loop() {
  9. // put your main code here, to run repeatedly:
  10. }