mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-22 00:30:16 +01:00
18 lines
299 B
C++
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 |