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.
28 lines
349 B
28 lines
349 B
|
|
#include "WebServer.h"
|
|
#include "Pages.h"
|
|
|
|
const char ledURL[] PROGMEM = "/LED.html.json";
|
|
|
|
const WebMethod PROGMEM methods[] = {
|
|
{ ledURL, ledHtmlCallback },
|
|
{ NULL, NULL },
|
|
};
|
|
|
|
WebServer webServer(Serial, methods);
|
|
|
|
void setup()
|
|
{
|
|
Serial.begin(57600);
|
|
webServer.init();
|
|
|
|
ledInit();
|
|
}
|
|
|
|
void loop()
|
|
{
|
|
webServer.loop();
|
|
|
|
ledLoop();
|
|
}
|
|
|
|
|