12345678910111213141516171819202122232425262728293031323334353637 |
- void handleSaveMac() {
- if (server.hasArg("mac")) {
-
- String data = server.arg("mac");
-
- File file = LittleFS.open(DB_PATH, "w");
- if (!file) {
- server.send(500, "text/plain", "Failed to open file for writing");
- return;
- }
-
- file.print(data);
- file.close();
- sendOK();
- } else {
- server.send(400, "text/plain", "No string provided in the request");
- }
- }
- void handleGetMac() {
-
- File file = LittleFS.open(DB_PATH, "r");
- if (!file) {
- server.send(500, "text/plain", "Failed to open file for reading");
- return;
- }
-
- String data = file.readString();
- file.close();
-
- server.send(200, "application/json", data);
- }
|