Files
NetMeterbusMaster/info.cpp
Wolfgang Hottgenroth e7a6a84bbc adjust info
2017-01-04 18:02:05 +01:00

25 lines
411 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 commit: 5f2b4bc7b9fab9272414b2f2eac3a9ece427a035" << endl;
return "done";
}