24 lines
327 B
C++
24 lines
327 B
C++
/*
|
|
* info.cpp
|
|
*
|
|
* Created on: 13.05.2015
|
|
* Author: wn
|
|
*/
|
|
|
|
|
|
|
|
#include <WString.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: First_MQTT" << endl;
|
|
|
|
return "done";
|
|
}
|
|
|
|
|