From df04fea8c6f0f0e7e1528f0ae12c8f44d561a6e8 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Wed, 21 May 2025 15:58:24 -0400 Subject: [PATCH] Update dtmf_aprs_cc.py don't use counter --- dtmf_aprs_cc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dtmf_aprs_cc.py b/dtmf_aprs_cc.py index c67e5300..12d69af3 100644 --- a/dtmf_aprs_cc.py +++ b/dtmf_aprs_cc.py @@ -109,7 +109,8 @@ if __name__ == "__main__": mode = 'o' change_mode = True - 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) 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)