esp32 рабочая версия с little fs файловой системой

This commit is contained in:
Dmitry Borisenko
2022-09-16 01:52:04 +02:00
parent aae21f4a78
commit d4539169ea
11 changed files with 138 additions and 104 deletions

View File

@@ -455,18 +455,16 @@
"num": 34 "num": 34
}, },
{ {
"name": "35. PWM ESP32", "name": "35. PWM ESP8266",
"type": "Writing", "type": "Writing",
"subtype": "Pwm32", "subtype": "Pwm8266",
"id": "pwm", "id": "pwm",
"widget": "range", "widget": "range",
"page": "Кнопки", "page": "Кнопки",
"descr": "PWM", "descr": "PWM",
"int": 0, "int": 0,
"pin": 2, "pin": 15,
"freq": 5000, "freq": 5000,
"ledChannel": 2,
"PWM_resolution": 10,
"val": 0, "val": 0,
"apin": -1, "apin": -1,
"num": 35 "num": 35

View File

@@ -1,7 +1,7 @@
#pragma once #pragma once
//Версия прошивки //Версия прошивки
#define FIRMWARE_VERSION 421 #define FIRMWARE_VERSION 422
#ifdef esp8266_4mb #ifdef esp8266_4mb
#define FIRMWARE_NAME "esp8266_4mb" #define FIRMWARE_NAME "esp8266_4mb"

View File

@@ -5,6 +5,7 @@
#include <LITTLEFS.h> #include <LITTLEFS.h>
#define FileFS LittleFS #define FileFS LittleFS
#define FS_NAME "LittleFS_32" #define FS_NAME "LittleFS_32"
#define CONFIG_LITTLEFS_SPIFFS_COMPAT 1
#else #else
#include <SPIFFS.h> #include <SPIFFS.h>
extern FS* filesystem; extern FS* filesystem;
@@ -21,6 +22,9 @@ using littlefs_impl::LittleFSConfig;
extern FS* filesystem; extern FS* filesystem;
#define FileFS LittleFS #define FileFS LittleFS
#define FS_NAME "LittleFS_8266" #define FS_NAME "LittleFS_8266"
#define FILE_READ "r"
#define FILE_WRITE "w"
#define FILE_APPEND "a"
#else #else
extern FS* filesystem; extern FS* filesystem;
#define FileFS SPIFFS #define FileFS SPIFFS

View File

@@ -13,5 +13,6 @@ extern const String getTimeLocal_hhmmss();
extern const String getDateTimeDotFormated(); extern const String getDateTimeDotFormated();
extern const String getDateDotFormated(); extern const String getDateDotFormated();
extern unsigned long strDateToUnix(String date); extern unsigned long strDateToUnix(String date);
const String getDateTimeDotFormatedFromUnix(unsigned long unixTime); extern const String getDateTimeDotFormatedFromUnix(unsigned long unixTime);
extern unsigned long gmtTimeToLocal(unsigned long gmtTimestamp); extern unsigned long gmtTimeToLocal(unsigned long gmtTimestamp);
extern const String getDateDotFormatedFromUnix(unsigned long unixTime);

View File

@@ -6,6 +6,7 @@ extern void writeFileUint8tByFrames(const String& filename, uint8_t*& big_buf, s
extern void writeFileUint8tByByte(const String& filename, uint8_t*& payload, size_t length, size_t headerLenth); extern void writeFileUint8tByByte(const String& filename, uint8_t*& payload, size_t length, size_t headerLenth);
extern File seekFile(const String& filename, size_t position = 0); extern File seekFile(const String& filename, size_t position = 0);
extern const String writeFile(const String& filename, const String& str); extern const String writeFile(const String& filename, const String& str);
const String writeEmptyFile(const String& filename);
extern const String addFileLn(const String& filename, const String& str); extern const String addFileLn(const String& filename, const String& str);
extern const String readFile(const String& filename, size_t max_size); extern const String readFile(const String& filename, size_t max_size);
extern const String filepath(const String& filename); extern const String filepath(const String& filename);
@@ -15,7 +16,7 @@ void removeFile(const String& filename);
void removeDirectory(const String& dir); void removeDirectory(const String& dir);
void cleanDirectory(String path); void cleanDirectory(String path);
void cleanLogs(); void cleanLogs();
void saveDataDB(String id, String data); String saveDataDB(String id, String data);
String readDataDB(String id); String readDataDB(String id);
extern void onFlashWrite(); extern void onFlashWrite();

View File

@@ -21,7 +21,7 @@
}, },
"projectProp": { "projectProp": {
"platformio": { "platformio": {
"default_envs": "esp32_4mb", "default_envs": "esp8266_4mb",
"data_dir": "data_svelte" "data_dir": "data_svelte"
} }
}, },

View File

@@ -41,7 +41,7 @@ build_src_filter =
${env:esp32_4mb_fromitems.build_src_filter} ${env:esp32_4mb_fromitems.build_src_filter}
[platformio] [platformio]
default_envs = esp32_4mb default_envs = esp8266_4mb
data_dir = data_svelte data_dir = data_svelte
[common_env_data] [common_env_data]

View File

@@ -156,3 +156,11 @@ const String getDateTimeDotFormatedFromUnix(unsigned long unixTime) {
sprintf(buf, "%02d.%02d.%02d %02d:%02d:%02d", time.day_of_month, time.month, time.year, time.hour, time.minute, time.second); sprintf(buf, "%02d.%02d.%02d %02d:%02d:%02d", time.day_of_month, time.month, time.year, time.hour, time.minute, time.second);
return String(buf); return String(buf);
} }
const String getDateDotFormatedFromUnix(unsigned long unixTime) {
Time_t time;
breakEpochToTime(unixTime, time);
char buf[32];
sprintf(buf, "%02d.%02d.%d", time.day_of_month, time.month, time.year + 2000);
return String(buf);
}

View File

@@ -22,7 +22,7 @@ void* getAPI_ButtonOut(String subtype, String params);
void* getAPI_IoTServo(String subtype, String params); void* getAPI_IoTServo(String subtype, String params);
void* getAPI_Mcp23017(String subtype, String params); void* getAPI_Mcp23017(String subtype, String params);
void* getAPI_Mp3(String subtype, String params); void* getAPI_Mp3(String subtype, String params);
void* getAPI_Pwm32(String subtype, String params); void* getAPI_Pwm8266(String subtype, String params);
void* getAPI_TelegramLT(String subtype, String params); void* getAPI_TelegramLT(String subtype, String params);
void* getAPI_Lcd2004(String subtype, String params); void* getAPI_Lcd2004(String subtype, String params);
@@ -50,7 +50,7 @@ if ((tmpAPI = getAPI_ButtonOut(subtype, params)) != nullptr) return tmpAPI;
if ((tmpAPI = getAPI_IoTServo(subtype, params)) != nullptr) return tmpAPI; if ((tmpAPI = getAPI_IoTServo(subtype, params)) != nullptr) return tmpAPI;
if ((tmpAPI = getAPI_Mcp23017(subtype, params)) != nullptr) return tmpAPI; if ((tmpAPI = getAPI_Mcp23017(subtype, params)) != nullptr) return tmpAPI;
if ((tmpAPI = getAPI_Mp3(subtype, params)) != nullptr) return tmpAPI; if ((tmpAPI = getAPI_Mp3(subtype, params)) != nullptr) return tmpAPI;
if ((tmpAPI = getAPI_Pwm32(subtype, params)) != nullptr) return tmpAPI; if ((tmpAPI = getAPI_Pwm8266(subtype, params)) != nullptr) return tmpAPI;
if ((tmpAPI = getAPI_TelegramLT(subtype, params)) != nullptr) return tmpAPI; if ((tmpAPI = getAPI_TelegramLT(subtype, params)) != nullptr) return tmpAPI;
if ((tmpAPI = getAPI_Lcd2004(subtype, params)) != nullptr) return tmpAPI; if ((tmpAPI = getAPI_Lcd2004(subtype, params)) != nullptr) return tmpAPI;
return nullptr; return nullptr;

View File

@@ -44,22 +44,23 @@ class Loging : public IoTItem {
} }
void doByInterval() { void doByInterval() {
SerialPrint("E", F("Loging"), "----------------------start loging cycle----------------------------");
//если объект логгирования не был создан //если объект логгирования не был создан
if (!isItemExist(logid)) { if (!isItemExist(logid)) {
SerialPrint("E", F("Loging"), "'" + id + "' loging object not exist"); SerialPrint("E", F("Loging"), "'" + id + "' loging object not exist, return");
return; return;
} }
String value = getItemValue(logid); String value = getItemValue(logid);
//если значение логгирования пустое //если значение логгирования пустое
if (value == "") { if (value == "") {
SerialPrint("E", F("Loging"), "'" + id + "' loging value is empty"); SerialPrint("E", F("Loging"), "'" + id + "' loging value is empty, return");
return; return;
} }
//если время не было получено из интернета //если время не было получено из интернета
if (!isTimeSynch) { if (!isTimeSynch) {
SerialPrint("E", F("Loging"), "'" + id + "' Сant loging - time not synchronized"); SerialPrint("E", F("Loging"), "'" + id + "' Сant loging - time not synchronized, return");
return; return;
} }
@@ -72,9 +73,16 @@ class Loging : public IoTItem {
//если данные о файле отсутствуют, создадим новый //если данные о файле отсутствуют, создадим новый
if (filePath == "failed" || filePath == "") { if (filePath == "failed" || filePath == "") {
SerialPrint("E", F("Loging"), "'" + id + "' file path not found"); SerialPrint("E", F("Loging"), "'" + id + "' file path not found, start create new file");
createNewFileWithData(logData); createNewFileWithData(logData);
return; return;
} else {
//если файл все же есть но был создан не сегодня, то создаем сегодняшний
if (getDateDotFormated() != getDateDotFormatedFromUnix(getFileUnixLocalTime(filePath))) {
SerialPrint("E", F("Loging"), "'" + id + "' file too old, start create new file");
createNewFileWithData(logData);
return;
}
} }
//считаем количество строк //считаем количество строк
@@ -91,17 +99,34 @@ class Loging : public IoTItem {
} }
//запускаем процедуру удаления старых файлов если память переполняется //запускаем процедуру удаления старых файлов если память переполняется
deleteLastFile(); deleteLastFile();
SerialPrint("E", F("Loging"), "----------------------compl loging cycle----------------------------");
} }
void createNewFileWithData(String &logData) { void createNewFileWithData(String &logData) {
String path = "/lg/" + id + "/" + String(unixTimeShort) + ".txt"; //создадим путь вида /lg/id/133256622333.txt String path = "/lg/" + id + "/" + String(unixTimeShort) + ".txt"; //создадим путь вида /lg/id/133256622333.txt
addFileLn(path, logData); //запишем файл и данные в него //создадим пустой файл
saveDataDB(id, path); //запишем путь к файлу в базу данных if (writeEmptyFile(path) != "sucсess") {
SerialPrint("E", F("Loging"), "'" + id + "' file writing error, return");
return;
}
//запишем в него данные
if (addFileLn(path, logData) != "sucсess") {
SerialPrint("E", F("Loging"), "'" + id + "' data writing error, return");
return;
}
//запишем путь к нему в базу данных
if (saveDataDB(id, path) != "sucсess") {
SerialPrint("E", F("Loging"), "'" + id + "' db file writing error, return");
return;
}
SerialPrint("i", F("Loging"), "'" + id + "' file created http://" + WiFi.localIP().toString() + path); SerialPrint("i", F("Loging"), "'" + id + "' file created http://" + WiFi.localIP().toString() + path);
} }
void addNewDataToExistingFile(String &path, String &logData) { void addNewDataToExistingFile(String &path, String &logData) {
addFileLn(path, logData); if (addFileLn(path, logData) != "sucсess") {
SerialPrint("i", F("Loging"), "'" + id + "' file writing error, return");
return;
};
SerialPrint("i", F("Loging"), "'" + id + "' loging in file http://" + WiFi.localIP().toString() + path); SerialPrint("i", F("Loging"), "'" + id + "' loging in file http://" + WiFi.localIP().toString() + path);
} }
@@ -120,8 +145,13 @@ class Loging : public IoTItem {
} }
void sendChart() { void sendChart() {
String dir = "lg/" + id; SerialPrint("E", F("Loging"), "----------------------start send chart----------------------------");
String dir = "/lg/" + id;
filesList = getFilesList(dir); filesList = getFilesList(dir);
SerialPrint("i", F("Loging"), "file list: " + filesList);
int f = 0; int f = 0;
bool noData = true; bool noData = true;
@@ -129,16 +159,20 @@ class Loging : public IoTItem {
while (filesList.length()) { while (filesList.length()) {
String buf = selectToMarker(filesList, ";"); String buf = selectToMarker(filesList, ";");
buf = "/lg/" + id + buf;
f++; f++;
int i = 0; int i = 0;
unsigned long fileUnixTimeGMT = selectToMarkerLast(deleteToMarkerLast(buf, "."), "/").toInt() + START_DATETIME; unsigned long fileUnixTimeLocal = getFileUnixLocalTime(buf);
unsigned long fileUnixTimeLocal = gmtTimeToLocal(fileUnixTimeGMT);
unsigned long reqUnixTime = strDateToUnix(getItemValue(id + "-date")); unsigned long reqUnixTime = strDateToUnix(getItemValue(id + "-date"));
if (fileUnixTimeLocal > reqUnixTime && fileUnixTimeLocal < reqUnixTime + 86400) { if (fileUnixTimeLocal > reqUnixTime && fileUnixTimeLocal < reqUnixTime + 86400) {
noData = false; noData = false;
createJson(buf, i); if (!createJson(buf, i)) {
SerialPrint("E", F("Loging"), buf + " file reading error, json not created, return");
return;
}
SerialPrint("i", F("Loging"), String(f) + ") " + buf + ", " + String(i) + ", " + getDateTimeDotFormatedFromUnix(fileUnixTimeLocal) + ", sent"); SerialPrint("i", F("Loging"), String(f) + ") " + buf + ", " + String(i) + ", " + getDateTimeDotFormatedFromUnix(fileUnixTimeLocal) + ", sent");
} else { } else {
SerialPrint("i", F("Loging"), String(f) + ") " + buf + ", nil, " + getDateTimeDotFormatedFromUnix(fileUnixTimeLocal) + ", skipped"); SerialPrint("i", F("Loging"), String(f) + ") " + buf + ", nil, " + getDateTimeDotFormatedFromUnix(fileUnixTimeLocal) + ", skipped");
@@ -150,6 +184,7 @@ class Loging : public IoTItem {
if (noData) { if (noData) {
cleanChart(); cleanChart();
} }
SerialPrint("E", F("Loging"), "----------------------compl send chart----------------------------");
} }
void cleanChart() { void cleanChart() {
@@ -159,30 +194,22 @@ class Loging : public IoTItem {
} }
void cleanData() { void cleanData() {
String dir = "lg/" + id; String dir = "/lg/" + id;
filesList = getFilesList(dir); cleanDirectory(dir);
int i = 0;
while (filesList.length()) {
String buf = selectToMarker(filesList, ";");
i++;
removeFile(buf);
SerialPrint("i", "Files", String(i) + ") " + buf + " => deleted");
filesList = deleteBeforeDelimiter(filesList, ";");
}
} }
void deleteLastFile() { void deleteLastFile() {
IoTFSInfo tmp = getFSInfo(); IoTFSInfo tmp = getFSInfo();
SerialPrint("i", "Loging", String(tmp.freePer) + " % free flash remaining"); SerialPrint("i", "Loging", String(tmp.freePer) + " % free flash remaining");
if (tmp.freePer <= 10.00) { if (tmp.freePer <= 20.00) {
String dir = "lg/" + id; String dir = "/lg/" + id;
filesList = getFilesList(dir); filesList = getFilesList(dir);
int i = 0; int i = 0;
while (filesList.length()) { while (filesList.length()) {
String buf = selectToMarker(filesList, ";"); String buf = selectToMarker(filesList, ";");
buf = dir + buf;
i++; i++;
if (i == 1) { if (i == 1) {
removeFile(buf); removeFile(buf);
@@ -195,11 +222,10 @@ class Loging : public IoTItem {
} }
} }
void createJson(String file, int &i) { bool createJson(String file, int &i) {
File configFile = FileFS.open(file, "r"); File configFile = FileFS.open(file, FILE_READ);
if (!configFile) { if (!configFile) {
SerialPrint("E", F("Loging"), "'" + id + "' open file error"); return false;
return;
} }
configFile.seek(0, SeekSet); configFile.seek(0, SeekSet);
String buf = "{}"; String buf = "{}";
@@ -228,6 +254,7 @@ class Loging : public IoTItem {
oneSingleJson.replace("},]}", "}]}"); oneSingleJson.replace("},]}", "}]}");
publishJson(oneSingleJson); publishJson(oneSingleJson);
return true;
} }
// publishType 1 - в mqtt, 2 - в ws, 3 - mqtt и ws // publishType 1 - в mqtt, 2 - в ws, 3 - mqtt и ws
@@ -292,6 +319,11 @@ class Loging : public IoTItem {
int calculateMaxCount() { int calculateMaxCount() {
return 86400; return 86400;
} }
//путь вида: /lg/log/1231231.txt
unsigned long getFileUnixLocalTime(String path) {
return gmtTimeToLocal(selectToMarkerLast(deleteToMarkerLast(path, "."), "/").toInt() + START_DATETIME);
}
}; };
void *getAPI_Loging(String subtype, String param) { void *getAPI_Loging(String subtype, String param) {

View File

@@ -3,7 +3,7 @@
//данная функция записывает файл из буфера страницами указанного размера //данная функция записывает файл из буфера страницами указанного размера
void writeFileUint8tByFrames(const String& filename, uint8_t*& big_buf, size_t length, size_t headerLenth, size_t frameSize) { void writeFileUint8tByFrames(const String& filename, uint8_t*& big_buf, size_t length, size_t headerLenth, size_t frameSize) {
String path = filepath(filename); String path = filepath(filename);
auto file = FileFS.open(path, "w"); auto file = FileFS.open(path, FILE_WRITE);
if (!file) { if (!file) {
Serial.println(F("failed write file uint8tByFrames")); Serial.println(F("failed write file uint8tByFrames"));
return; return;
@@ -24,42 +24,9 @@ void writeFileUint8tByFrames(const String& filename, uint8_t*& big_buf, size_t l
onFlashWrite(); onFlashWrite();
} }
// void writeStrValueToJsonFile(const String& filename, String key, String value) {
// String tmp = readFile(filename, 4096);
// if (!jsonWriteStr_(tmp, key, value)) {
// Serial.println(F("failed write json value to file"));
// }
// writeFile(filename, tmp);
// }
//данная функция читает из файла страницами указанного размера
// void readFileUint8tByFrames(const String& filename, size_t frameSize) {
// String path = filepath(filename);
// auto file = FileFS.open(path, "r");
// if (!file) {
// Serial.println(F("failed read file Uint8tByFrames"));
// return;
// }
// size_t length = file.size();
// size_t read{0};
// while (length > read) {
// size_t size = length - read;
// if (size > frameSize) size = frameSize;
// uint8_t p[size];
// size_t res = file.read(p, size);
// //
// if (size != res) {
// break;
// }
// read += res;
// yield();
// }
// file.close();
//}
void writeFileUint8tByByte(const String& filename, uint8_t*& payload, size_t length, size_t headerLenth) { void writeFileUint8tByByte(const String& filename, uint8_t*& payload, size_t length, size_t headerLenth) {
String path = filepath(filename); String path = filepath(filename);
auto file = FileFS.open(path, "w"); auto file = FileFS.open(path, FILE_WRITE);
if (!file) { if (!file) {
Serial.println(F("failed write file uint8tByByte")); Serial.println(F("failed write file uint8tByByte"));
return; return;
@@ -81,7 +48,7 @@ void writeFileUint8tByByte(const String& filename, uint8_t*& payload, size_t len
File seekFile(const String& filename, size_t position) { File seekFile(const String& filename, size_t position) {
String path = filepath(filename); String path = filepath(filename);
auto file = FileFS.open(path, "r"); auto file = FileFS.open(path, FILE_READ);
if (!file) { if (!file) {
SerialPrint(F("E"), F("FS"), F("seek file error")); SerialPrint(F("E"), F("FS"), F("seek file error"));
} }
@@ -91,7 +58,12 @@ File seekFile(const String& filename, size_t position) {
const String writeFile(const String& filename, const String& str) { const String writeFile(const String& filename, const String& str) {
String path = filepath(filename); String path = filepath(filename);
auto file = FileFS.open(path, "w"); #ifdef ESP32
auto file = FileFS.open(path, FILE_WRITE, true);
#endif
#ifdef ESP8266
auto file = FileFS.open(path, FILE_WRITE);
#endif
if (!file) { if (!file) {
return "failed"; return "failed";
} }
@@ -101,9 +73,25 @@ const String writeFile(const String& filename, const String& str) {
onFlashWrite(); onFlashWrite();
} }
const String writeEmptyFile(const String& filename) {
String path = filepath(filename);
#ifdef ESP32
auto file = FileFS.open(path, FILE_WRITE, true);
#endif
#ifdef ESP8266
auto file = FileFS.open(path, FILE_WRITE);
#endif
if (!file) {
return "failed";
}
file.close();
return "sucсess";
onFlashWrite();
}
const String addFileLn(const String& filename, const String& str) { const String addFileLn(const String& filename, const String& str) {
String path = filepath(filename); String path = filepath(filename);
auto file = FileFS.open(path, "a"); auto file = FileFS.open(path, FILE_APPEND);
if (!file) { if (!file) {
return "failed"; return "failed";
} }
@@ -115,7 +103,7 @@ const String addFileLn(const String& filename, const String& str) {
const String readFile(const String& filename, size_t max_size) { const String readFile(const String& filename, size_t max_size) {
String path = filepath(filename); String path = filepath(filename);
auto file = FileFS.open(path, "r"); auto file = FileFS.open(path, FILE_READ);
if (!file) { if (!file) {
return "failed"; return "failed";
} }
@@ -144,8 +132,8 @@ bool cutFile(const String& src, const String& dst) {
if (FileFS.exists(dstPath)) { if (FileFS.exists(dstPath)) {
FileFS.remove(dstPath); FileFS.remove(dstPath);
} }
auto srcFile = FileFS.open(srcPath, "r"); auto srcFile = FileFS.open(srcPath, FILE_READ);
auto dstFile = FileFS.open(dstPath, "w"); auto dstFile = FileFS.open(dstPath, FILE_WRITE);
uint8_t buf[512]; uint8_t buf[512];
while (srcFile.available()) { while (srcFile.available()) {
size_t len = srcFile.read(buf, 512); size_t len = srcFile.read(buf, 512);
@@ -162,7 +150,7 @@ bool cutFile(const String& src, const String& dst) {
size_t countLines(const String filename) { size_t countLines(const String filename) {
size_t cnt = -1; size_t cnt = -1;
String path = filepath(filename); String path = filepath(filename);
auto file = FileFS.open(path, "r"); auto file = FileFS.open(path, FILE_READ);
if (!file) { if (!file) {
return cnt; return cnt;
} }
@@ -202,24 +190,9 @@ void removeDirectory(const String& dir) {
} }
} }
//очищаем директорию с файлами String saveDataDB(String id, String data) {
void cleanDirectory(String path) {
String filesList = getFilesList(path);
int i = 0;
while (filesList.length()) {
String buf = selectToMarker(filesList, ";");
i++;
removeFile(buf);
SerialPrint("i", "Files", String(i) + ") " + buf + " => deleted");
filesList = deleteBeforeDelimiter(filesList, ";");
}
}
void saveDataDB(String id, String data) {
String path = "/db/" + id + ".txt"; String path = "/db/" + id + ".txt";
writeFile(path, data); return writeFile(path, data);
} }
String readDataDB(String id) { String readDataDB(String id) {
@@ -229,7 +202,7 @@ String readDataDB(String id) {
void cleanLogs() { void cleanLogs() {
SerialPrint("i", "Files", "cleanLogs"); SerialPrint("i", "Files", "cleanLogs");
cleanDirectory("db"); cleanDirectory("/db");
//очистка данных всех экземпляров графиков //очистка данных всех экземпляров графиков
for (std::list<IoTItem*>::iterator it = IoTItems.begin(); it != IoTItems.end(); ++it) { for (std::list<IoTItem*>::iterator it = IoTItems.begin(); it != IoTItems.end(); ++it) {
if ((*it)->getSubtype() == "Loging") { if ((*it)->getSubtype() == "Loging") {
@@ -238,6 +211,22 @@ void cleanLogs() {
} }
} }
//очищаем директорию с файлами
void cleanDirectory(String path) {
String filesList = getFilesList(path);
int i = 0;
while (filesList.length()) {
String buf = selectToMarker(filesList, ";");
buf = path + buf;
SerialPrint("i", "", buf);
i++;
removeFile(buf);
SerialPrint("i", "Files", String(i) + ") " + buf + " => deleted");
filesList = deleteBeforeDelimiter(filesList, ";");
}
}
//счетчик количества записей на флешь за сеанс //счетчик количества записей на флешь за сеанс
void onFlashWrite() { void onFlashWrite() {
flashWriteNumber++; flashWriteNumber++;
@@ -260,14 +249,15 @@ String getFilesList8266(String& directory) {
#if defined(ESP32) #if defined(ESP32)
String getFilesList32(String& directory) { String getFilesList32(String& directory) {
String filesList = ""; String filesList = "";
directory = "/" + directory;
File root = FileFS.open(directory); File root = FileFS.open(directory);
directory = String(); // if (!root) {
// return "";
// }
if (root.isDirectory()) { if (root.isDirectory()) {
File file = root.openNextFile(); File file = root.openNextFile();
while (file) { while (file) {
String fname = file.name(); String fname = file.name();
if (fname != "") filesList += fname + ";"; if (fname != "") filesList += "/" + fname + ";";
file = root.openNextFile(); file = root.openNextFile();
} }
} }