Many changes - not yet "controlled" updates.

This commit is contained in:
David
2021-10-04 13:45:39 +00:00
parent 8c1a403008
commit 74543a99f8
42 changed files with 7718 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#include <ESP8266WiFi.h>
#include "ProjGlobals.h"
#include "Web_RSSIGraph.h"
#include "Web_Resources.h"
void HandleRSSIPage() {
server.send_P(200, "text/html", rssi_htm);
}
void HandleRSSI_JS() {
server.send_P(200, "text/html", rssi_js);
}
void HandleCurrPage() {
server.send_P(200, "text/html", curr_htm);
}
void HandleCurr_JS() {
server.send_P(200, "text/html", curr_js);
}