Files
IoTManager/src/Utils/SerialPrint.cpp

9 lines
259 B
C++
Raw Normal View History

2021-10-05 19:21:52 +08:00
#include "Utils\SerialPrint.h"
#include "Global.h"
void SerialPrint(String errorLevel, String module, String msg) {
//if (module == "MySensor") {
Serial.println(prettyMillis(millis()) + " [" + errorLevel + "] [" + module + "] " + msg);
//}
}