mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-02-01 13:24:48 +01:00
15 lines
226 B
C++
15 lines
226 B
C++
#ifndef GPS_UTILS_H_
|
|
#define GPS_UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
namespace GPS_Utils {
|
|
|
|
String double2string(double n, int ndec);
|
|
String processLatitudeAPRS();
|
|
String processLongitudeAPRS();
|
|
String generateBeacon();
|
|
|
|
}
|
|
|
|
#endif |