mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-21 08:10:15 +01:00
14 lines
224 B
C++
14 lines
224 B
C++
#ifndef SYSLOG_H_
|
|
#define SYSLOG_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
|
namespace SYSLOG_Utils {
|
|
|
|
void log(const uint8_t type ,const String& packet, const int rssi, const float snr, const int freqError);
|
|
void setup();
|
|
|
|
}
|
|
|
|
#endif |