From 7daeb8d25bcf3da862ff7bd64e781a0d12f10200 Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Fri, 24 Jul 2020 15:24:36 +0200 Subject: [PATCH] print beaconed msg to serial --- src/LoRa_APRS_iGate.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index 32b177a..a4dc248 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -100,6 +100,7 @@ void loop() { show_display(Config->getIsCall(), "Beacon to Server..."); Serial.print("[" + timeClient.getFormattedTime() + "] "); + Serial.print(BeaconMsg); aprs_is->sendMessage(BeaconMsg); next_update = (timeClient.getMinutes() + Config->getBeaconTimeout()) % 60; }