TeensyPwm/cmd.h
2015-02-16 14:08:45 +01:00

23 lines
236 B
C++

#ifndef CMD_H_
#define CMD_H_
#include <stdint.h>
#include <WString.h>
class CmdServer {
public:
CmdServer();
void begin();
void exec();
private:
void parseCommand();
String cmd;
String params;
};
#endif /* CMD_H_ */