Files
NetMeterbusMaster/info.cpp
Wolfgang Hottgenroth 60809b0cdb Query enable switch added
2015-08-14 22:44:52 +02:00

25 lines
351 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: NetMeterBusMaster2" << endl;
*out << "Repo Tag: Second_MQTT" << endl;
return "done";
}