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

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);
}