26 lines
574 B
C++
26 lines
574 B
C++
#ifndef WLED_NET_DEBUG_H
|
|
#define WLED_NET_DEBUG_H
|
|
|
|
#include <WString.h>
|
|
#include <WiFiUdp.h>
|
|
|
|
class NetworkDebugPrinter {
|
|
private:
|
|
WiFiUDP debugUdp;
|
|
void printchar(char c);
|
|
public:
|
|
void print(const char *s);
|
|
void print(const __FlashStringHelper* s);
|
|
void print(String s);
|
|
void print(unsigned int n);
|
|
void println();
|
|
void println(const char *s);
|
|
void println(const __FlashStringHelper* s);
|
|
void println(String s);
|
|
void println(unsigned int n);
|
|
void printf(const char *fmt, ...);
|
|
};
|
|
|
|
extern NetworkDebugPrinter NetDebug;
|
|
|
|
#endif |