mirror of
https://github.com/thooge/esp32-nmea2000-obp60.git
synced 2025-12-21 17:53:06 +01:00
12 lines
234 B
C++
12 lines
234 B
C++
#ifndef _GWLOG_H
|
|
#define _GWLOG_H
|
|
#include <Arduino.h>
|
|
class GwLog{
|
|
private:
|
|
char buffer[100];
|
|
bool logSerial=false;
|
|
public:
|
|
GwLog(bool logSerial);
|
|
void logString(const char *fmt,...);
|
|
};
|
|
#endif |