Advertisement
KenFalco

Formatt-SPIFFS

Aug 17th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <FS.h>
  2.  
  3. void setup() {
  4.   Serial.begin(115200);
  5.   SPIFFS.begin();
  6.   Serial.print("Wait...\n");
  7.   SPIFFS.format();
  8.   Serial.print("Done!");
  9. }
  10.  
  11. void loop() {
  12.   delay(5000);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement