14 lines
437 B
C++
14 lines
437 B
C++
#ifndef HTMLGENERATOR_H
|
|
#define HTMLGENERATOR_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
class HTMLGenerator
|
|
{
|
|
public:
|
|
static const String GetElement(const String &tag,const String &content );
|
|
static const String DisplayOuputPinStatus( const String &pinName,const bool &isOn, const String &description);
|
|
static const String DisplayInputPinStatus( const String &pinName,const bool &isOn,const String &description);
|
|
};
|
|
|
|
#endif // HTMLGENERATOR_H
|