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.
esp-link/examples/arduino/EspLinkSample/EspLinkSample.ino

29 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();
}