Files
NetMeterbusMaster/info.cpp
2015-08-14 22:47:44 +02:00

25 lines
353 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_b" << endl;
return "done";
}