LoRa_APRS_iGate/include/syslog_utils.h
richonguzman 9801545965 update1
2024-12-04 13:59:46 -03:00

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