bcfeef8004
Adds a webpack plugin to package interface as PROGMEM into a header file in the framework. Adds a build flag to optionally enable serving from PROGMEM or SPIFFS as required Adds documentation changes to describe changes
39 lines
810 B
C++
39 lines
810 B
C++
#include <DemoProject.h>
|
|
#include <ESP8266React.h>
|
|
#include <FS.h>
|
|
|
|
#define SERIAL_BAUD_RATE 115200
|
|
|
|
AsyncWebServer server(80);
|
|
ESP8266React esp8266React(&server, &SPIFFS);
|
|
DemoProject demoProject = DemoProject(&server, &SPIFFS, esp8266React.getSecurityManager());
|
|
|
|
void setup() {
|
|
// start serial and filesystem
|
|
Serial.begin(SERIAL_BAUD_RATE);
|
|
|
|
// start the file system (must be done before starting the framework)
|
|
#ifdef ESP32
|
|
SPIFFS.begin(true);
|
|
#elif defined(ESP8266)
|
|
SPIFFS.begin();
|
|
#endif
|
|
|
|
// start the framework and demo project
|
|
esp8266React.begin();
|
|
|
|
// start the demo project
|
|
demoProject.begin();
|
|
|
|
// start the server
|
|
server.begin();
|
|
}
|
|
|
|
void loop() {
|
|
// run the framework's loop function
|
|
esp8266React.loop();
|
|
|
|
// run the demo project's loop function
|
|
demoProject.loop();
|
|
}
|