ESPSomfy-RTS/Web.h
Robert Strouse 765e8f3fd0 My Favorite Processing
* My button long presses detected from remotes for setting the my button.
* Allow setting of rolling code.
* Tuning for position setter and reading of hw sync bytes for repeats.
2023-02-18 13:14:22 -08:00

12 lines
223 B
C++

#ifndef webserver_h
#define webserver_h
class Web {
public:
void sendCORSHeaders();
void sendCacheHeaders(uint32_t seconds=604800);
void startup();
void begin();
void loop();
void end();
};
#endif