OTA Solution - Build your own OTA platform (2/2, ESP32 OTA Application)

This commit is contained in:
Eric
2021-07-31 14:41:35 -07:00
parent 5c79489642
commit d5ebb9a165
16 changed files with 940 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include "FileIO.h"
#include <Update.h>
class Updater {
private:
void performUpdate(Stream& updateSource, size_t updateSize);
public:
bool updateFromFS(FileIO** fileIO);
};