From 79c11edb7e056f7314a74f27a09f822b55d3c36f Mon Sep 17 00:00:00 2001 From: Farid Farhan <37871833+faridfarhan28@users.noreply.github.com> Date: Sat, 20 Feb 2021 17:37:21 +0700 Subject: [PATCH] Update LoRa_APRS_Tracker.cpp add manual path setting --- src/LoRa_APRS_Tracker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LoRa_APRS_Tracker.cpp b/src/LoRa_APRS_Tracker.cpp index 8b7d56d..d358c32 100644 --- a/src/LoRa_APRS_Tracker.cpp +++ b/src/LoRa_APRS_Tracker.cpp @@ -162,7 +162,7 @@ void loop() APRSMessage msg; msg.setSource(CALL); - msg.setDestination("APLT0"); + msg.setDestination("PATH_SET"); String lat = create_lat_aprs(gps.location.rawLat()); String lng = create_long_aprs(gps.location.rawLng()); msg.getAPRSBody()->setData(String("=") + lat + SYMBOL_OVERLAY + lng + SYMBOL_CODE + BEACON_MESSAGE);