22 lines
406 B
C++
22 lines
406 B
C++
|
|
#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);
|
|
} |