LoRa_APRS_iGate/src/syslog_utils.h
richonguzman b7ba17d871 test1
2023-06-12 23:36:39 -04:00

13 lines
183 B
C++

#ifndef SYSLOG_H_
#define SYSLOG_H_
#include <Arduino.h>
namespace SYSLOG_Utils {
void log(String type ,String packet, int rssi, float snr, int freqError);
void setup();
}
#endif