LoRa_APRS_iGate/src/syslog_utils.h
2024-02-25 10:53:16 -03:00

14 lines
192 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