update storage to be compatible with int. LittleFS

This commit is contained in:
2021-11-27 11:18:04 +01:00
parent 4815afada0
commit dd4fb43465

View File

@@ -3,7 +3,11 @@
#include <Arduino.h>
#include "FS.h"
#include <LITTLEFS.h>
#if ESP_ARDUINO_VERSION >= ESP_ARDUINO_VERSION_VAL(2, 0, 0)
#include <littleFS.h>
#else
#include <LITTLEFS.h>
#endif
#ifndef CONFIG_LITTLEFS_FOR_IDF_3_2
#include <time.h>