mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-02-05 23:34:14 +01:00
19 lines
438 B
C++
19 lines
438 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();
|
|
double calculateDistanceCourse(double latitude, double longitude);
|
|
String decodeEncodedGPS(String packet);
|
|
String getReceivedGPS(String packet);
|
|
String getDistance(String packet);
|
|
|
|
}
|
|
|
|
#endif |