mirror of
https://github.com/rstrouse/ESPSomfy-RTS.git
synced 2025-12-13 19:12:10 +01:00
* 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.
12 lines
223 B
C++
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
|