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

13 lines
177 B
C++

#ifndef DebugLog_H
#define DebugLog_H
#include <Arduino.h>
class DebugLog
{
public:
static void init(const long &bound);
static void log(const String &log);
};
#endif