EmbAJAX
Simplistic framework for creating and handling displays and controls on a web page served by an embeddable device (Arduino or other microcontroller with Arduino support).
EmbAJAXOutputDriverESP32.h
1 
22 #ifndef EMBAJAXOUTPUTDRIVERESP32_H
23 #define EMBAJAXOUTPUTDRIVERESP32_H
24 
25 #include <WebServer.h>
26 #define EmbAJAXOutputDriverWebServerClass WebServer
27 
28 #include <WiFi.h> // Makes the examples work cross-platform; not strictly needed
29 
30 // the actual implementation
31 #include "EmbAJAXOutputDriverGeneric.h"
32 
33 #endif