Chat freely about anything...

User avatar
By Cnuma
#64913 I search and search again, capabilities to use Flash space to store Gif image ...
I know how to push file on flash thru Arduino IDE, but i don't know how to set right path to access this file from page build by ESP.

Thanks for you answers ;-)


Manu
User avatar
By martinayotte
#64945 Files are located in SPIFFS filesystem.
You can print a list of the files using openDir() method.
Code: Select all    if (!SPIFFS.begin()) {
      Serial.println("SPIFFS failed to mount !\r\n");
    }
    else {
    Dir dir = SPIFFS.openDir("/");
      while (dir.next()) {
        Serial.print(dir.fileName());
        Serial.print(" - ");
        Serial.println(dir.fileSize());
      }
    }