Files
EMS-ESP32/lib_standalone/ESP8266React.h
2020-07-05 18:29:08 +02:00

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