Wolfgang Hottgenroth f6e8989226 tag added to info.cpp
2017-01-07 19:11:15 +01:00

25 lines
397 B
C++

/*
* info.cpp
*
* Created on: 13.05.2015
* Author: wn
*/
#include <WString.h>
#include <Streaming.h>
#include "info.h"
String InfoCmd::exec(String params) {
Print *out = m_server;
*out << "Meterbus Hub" << endl;
*out << "Project/Repo: git@gitlab.com:wolutator/NetMeterbusMaster.git" << endl;
*out << "Repo tag: ErrorDetectionLoopDisabling_b" << endl;
return "done";
}