LoRa_APRS_iGate/include/A7670_utils.h

18 lines
299 B
C
Raw Normal View History

2024-04-23 18:30:57 +02:00
#ifndef A7670_UTILS_H_
#define A7670_UTILS_H_
#include <Arduino.h>
2024-11-06 16:47:42 +01:00
2024-04-23 18:30:57 +02:00
namespace A7670_Utils {
bool checkModemOn();
void setup();
2024-05-15 22:30:00 +02:00
bool checkATResponse(const String& ATMessage);
2024-04-23 18:30:57 +02:00
void APRS_IS_connect();
2024-05-15 22:30:00 +02:00
void uploadToAPRSIS(const String& packet);
2024-04-23 18:30:57 +02:00
void listenAPRSIS();
}
#endif