mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
595 B
35 lines
595 B
#include "EspLink.h"
|
|
#include "WebServer.h"
|
|
#include "Pages.h"
|
|
|
|
const char ledURL[] PROGMEM = "/LED.html.json";
|
|
const char userURL[] PROGMEM = "/User.html.json";
|
|
const char voltageURL[] PROGMEM = "/Voltage.html.json";
|
|
|
|
const WebMethod PROGMEM methods[] = {
|
|
{ ledURL, ledHtmlCallback },
|
|
{ userURL, userHtmlCallback },
|
|
{ voltageURL, voltageHtmlCallback },
|
|
{ NULL, NULL },
|
|
};
|
|
|
|
WebServer webServer(Serial, methods);
|
|
|
|
void setup()
|
|
{
|
|
Serial.begin(57600);
|
|
webServer.init();
|
|
|
|
ledInit();
|
|
userInit();
|
|
voltageInit();
|
|
}
|
|
|
|
void loop()
|
|
{
|
|
webServer.loop();
|
|
|
|
ledLoop();
|
|
voltageLoop();
|
|
}
|
|
|
|
|