This commit is contained in:
2021-01-12 12:26:58 +01:00
parent 2d67aceba0
commit 0031f92c54
190 changed files with 25835 additions and 1 deletions

7
lib/framework/ESPFS.h Normal file
View File

@@ -0,0 +1,7 @@
#ifdef ESP32
#include <SPIFFS.h>
#define ESPFS SPIFFS
#elif defined(ESP8266)
#include <LittleFS.h>
#define ESPFS LittleFS
#endif