9 lines
117 B
C++
9 lines
117 B
C++
|
// ESPMega TCP API
|
||
|
#include <Arduino.h>
|
||
|
|
||
|
class ESPMegaTCP
|
||
|
{
|
||
|
public:
|
||
|
void begin();
|
||
|
void loop();
|
||
|
};
|