Skip to content

Software Distribution and Management Over the Air

License

Notifications You must be signed in to change notification settings

Munger/ESP-Library-LittleFS

 
 

Repository files navigation

Wifi & OTA update manager for IOT devices (ESP8266 and ESP32). ESP8266's need at least 1MB flash. You will need a free account at IOTAppStory.com.

This fork provides optional support for LittleFS instead of SPIFFS. To use LittleFS build with -DESP_USELITTLEFS=1. Please note that as LittleFS has support for real directories you will need to pass 'true' as the 'create' param when opening files if you want to create the directory hierarchy when opening a file. THe constant FS_CREATE_DIR_PATH has been defined for this purpose, e.g.

File fsUploadFile;
fsUploadFile = FILESYSTEM.open("/cert/iasRootCa.cer", "w", FS_CREATE_DIR_PATH);

FS_CREATE_DIR_PATH is true when using LittleFS, otherwise false. I have not yet checked all of the example code so if you have problems opening files, this is probably why.


Latest release 3.0.0-a.1

https://github.com/Munger/ESP-Library-LittleFS/releases/latest

Arduino IDE arduino-library-badge


Prerequisites

ESP8266 specific

ESP32 specific

ESP8266 and ESP32


IAS WIKI

https://iotappstory.com/wiki/arduino-esp

Contributions and thanks

Thankyou to all of you who made a pull request

Donation

Consider supporting IOTAppStory.com by contributing to its development.
Donate

About

Software Distribution and Management Over the Air

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 87.4%
  • C 12.6%