Files
Arduino-GSM-Chata/lib/Helper/HTMLGenerator.h
T
2024-04-24 03:29:50 +02:00

13 lines
328 B
C++

#ifndef HTMLGENERATOR_H
#define HTMLGENERATOR_H
#include <Arduino.h>
class HTMLGenerator
{
public:
static const String GetElement(const String &tag, String &content, const String &attributes = "");
static const String DisplayPinStatus(const String &status, const String &link, bool isOn);
};
#endif // HTMLGENERATOR_H