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).
EmbAJAXOutputDriverRP2040.h
1 
22 #ifndef EMBAJAXOUTPUTDRIVERRP2040_H
23 #define EMBAJAXOUTPUTDRIVERRP2040_H
24 
25 #include <WebServer.h>
26 #define EmbAJAXOutputDriverWebServerClass WebServer
27 #include <WiFi.h> // Makes the examples work cross-platform; not strictly needed
28 
29 // the actual implementation
30 #include "EmbAJAXOutputDriverGeneric.h"
31 
32 #endif