25 lines
395 B
C++
Raw Normal View History

2015-05-13 21:15:10 +02:00
/*
* info.cpp
*
* Created on: 13.05.2015
* Author: wn
*/
#include <WString.h>
2015-05-13 21:17:11 +02:00
#include <Streaming.h>
2015-05-13 21:15:10 +02:00
#include "info.h"
String InfoCmd::exec(String params) {
Print *out = m_server;
*out << "Meterbus Hub" << endl;
2017-01-04 18:02:05 +01:00
*out << "Project/Repo: git@gitlab.com:wolutator/NetMeterbusMaster.git" << endl;
2017-01-05 00:31:02 +01:00
*out << "Repo tag: ErrorDetectionLoopDisabling" << endl;
2015-05-13 21:15:10 +02:00
return "done";
}