This commit is contained in:
Yuri Trikoz
2020-06-22 14:01:12 +03:00
parent 092bec7dde
commit 274678f17a
20 changed files with 429 additions and 359 deletions

View File

@@ -51,4 +51,6 @@ String readFile(const String filename, size_t max_size);
/*
* Размер файла
*/
String getFileSize(const String filename);
String getFileSize(const String filename);
bool copyFile(const String src, const String dst, bool overwrite = true);

View File

@@ -2,9 +2,11 @@
#include "Global.h"
boolean scanWiFi(String ssid);
boolean isNetworkActive();
void startSTAMode();
bool startAPMode();
boolean scanWiFi(String ssid);