TeensyPwm/cmd.h

23 lines
236 B
C
Raw Normal View History

2015-02-16 14:08:45 +01:00
#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_ */