add info cmd
This commit is contained in:
23
info.h
Normal file
23
info.h
Normal file
@ -0,0 +1,23 @@
|
||||
/*
|
||||
* info.h
|
||||
*
|
||||
* Created on: 13.05.2015
|
||||
* Author: wn
|
||||
*/
|
||||
|
||||
#ifndef INFO_H_
|
||||
#define INFO_H_
|
||||
|
||||
|
||||
#include "cmd.h"
|
||||
|
||||
class InfoCmd : public Cmd {
|
||||
public:
|
||||
virtual String getCmdName() { return "INFO"; }
|
||||
virtual String getHelp() { return "Information on the firmware"; }
|
||||
virtual String exec(String params);
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif /* INFO_H_ */
|
Reference in New Issue
Block a user