LoRa_APRS_iGate/src/syslog_utils.h
2024-01-02 22:12:10 -03:00

13 lines
191 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