mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
15 lines
188 B
C++
15 lines
188 B
C++
#ifndef ESP8266React_h
|
|
#define ESP8266React_h
|
|
|
|
#include <Arduino.h>
|
|
|
|
class ESP8266React {
|
|
public:
|
|
ESP8266React(void* server, void* fs);
|
|
|
|
void begin() {};
|
|
void loop() {};
|
|
};
|
|
|
|
#endif
|