📂 Adds filesystem service

This commit is contained in:
Rune Harlyk
2024-05-02 18:27:21 +02:00
committed by Rune Harlyk
parent 16481b4054
commit a82f7bcb46
9 changed files with 172 additions and 2 deletions
@@ -23,6 +23,7 @@
#include <AnalyticsService.h>
#include <AuthenticationService.h>
#include <BatteryService.h>
#include <FileExplorerService.h>
#include <DownloadFirmwareService.h>
#include <ESPFS.h>
#include <ESPmDNS.h>
@@ -153,6 +154,11 @@ public:
return &_taskManager;
}
FileExplorer *getFileExplorer()
{
return &_fileExplorer;
}
void factoryReset()
{
_factoryResetService.factoryReset();
@@ -209,6 +215,7 @@ private:
FactoryResetService _factoryResetService;
SystemStatus _systemStatus;
TaskManager _taskManager;
FileExplorer _fileExplorer;
String _appName = APP_NAME;