From 254f54998d153b559e6621b36130c07ce7e40b81 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Fri, 16 Jan 2026 22:28:42 -0500 Subject: [PATCH] Update dtmf_aprs_cc.py remove counter check --- dtmf_aprs_cc.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/dtmf_aprs_cc.py b/dtmf_aprs_cc.py index 537fa922..e051c73a 100644 --- a/dtmf_aprs_cc.py +++ b/dtmf_aprs_cc.py @@ -108,12 +108,9 @@ if __name__ == "__main__": system("echo '\nBeacon Mode toggle!!\n'") mode = 'o' change_mode = True - print(" ") - print("Counter: ") - print(counter) - print(" ") - if (debug_mode == False) and (change_mode == True) and (counter == 1): # skip every other APRS command since Direwolf prints them twice -## if (debug_mode == False) and (change_mode == True): # skip every other APRS command since Direwolf prints them twice + +## if (debug_mode == False) and (change_mode == True) and (counter == 1): # skip every other APRS command since Direwolf prints them twice + if (debug_mode == False) and (change_mode == True): # skip every other APRS command since Direwolf prints them twice GPIO.setmode(GPIO.BCM) GPIO.setwarnings(False) GPIO.setup(powerPin, GPIO.OUT)