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

18 lines
299 B
C++

#ifndef A7670_UTILS_H_
#define A7670_UTILS_H_
#include <Arduino.h>
namespace A7670_Utils {
bool checkModemOn();
void setup();
bool checkATResponse(const String& ATMessage);
void APRS_IS_connect();
void uploadToAPRSIS(const String& packet);
void listenAPRSIS();
}
#endif