mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-28 15:12:19 +03:00
9 lines
251 B
C++
9 lines
251 B
C++
#include "Utils\SerialPrint.h"
|
|
|
|
#include "Global.h"
|
|
|
|
void SerialPrint(String errorLevel, String module, String msg) {
|
|
if (module == "Stat") {
|
|
Serial.println(prettyMillis(millis()) + " [" + errorLevel + "] [" + module + "] " + msg);
|
|
}
|
|
} |