24 lines
339 B
C
24 lines
339 B
C
![]() |
/*
|
||
|
* 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_ */
|