summaryrefslogtreecommitdiff
path: root/CommandTerminal/CmdIdentification.h
diff options
context:
space:
mode:
Diffstat (limited to 'CommandTerminal/CmdIdentification.h')
-rw-r--r--CommandTerminal/CmdIdentification.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/CommandTerminal/CmdIdentification.h b/CommandTerminal/CmdIdentification.h
new file mode 100644
index 0000000..b553ba1
--- /dev/null
+++ b/CommandTerminal/CmdIdentification.h
@@ -0,0 +1,17 @@
+#ifndef __CMDIDENTIFICATION_H__
+#define __CMDIDENTIFICATION_H__
+
+#include "Command.h"
+
+class CmdIdentification : public Command {
+
+public:
+
+ CmdIdentification(mDot* dot, mts::MTSSerial& serial);
+ virtual uint32_t action(std::vector<std::string> args);
+
+private:
+ mts::MTSSerial& _serial;
+};
+
+#endif // __CMDIDENTIFICATION_H__