18 lines
246 B
C++
18 lines
246 B
C++
#ifndef DebugLog_H
|
|
#define DebugLog_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
|
class DebugLog
|
|
{
|
|
private:
|
|
static void WriteToSerial(const String &dataString);
|
|
|
|
public:
|
|
static void init(const long &bound);
|
|
static void log(const String &log);
|
|
};
|
|
|
|
|
|
#endif |