mirror of
https://github.com/Anonym-tsk/smart-domofon.git
synced 2025-12-13 15:06:58 +03:00
13 lines
280 B
C++
13 lines
280 B
C++
#include "inc/include.h"
|
|
|
|
void DEBUG_LN(const char *text) {
|
|
Serial.println(text);
|
|
webSocket().printfAll("%s\n", text);
|
|
}
|
|
|
|
template<typename... Args>
|
|
void DEBUG_F(const char *format, Args... args) {
|
|
Serial.printf(format, args...);
|
|
webSocket().printfAll(format, args...);
|
|
}
|