13 lines
180 B
C++
13 lines
180 B
C++
#include <Arduino.h>
|
|
#include "DebugLog.h"
|
|
|
|
void DebugLog::log(const String &log)
|
|
{
|
|
Serial.println(log);
|
|
}
|
|
|
|
void DebugLog::init(const long &bound)
|
|
{
|
|
Serial.begin(bound);
|
|
}
|