From 5c29fffe057d5a145494730c6c19e0b559050f1e Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 7 Feb 2026 17:19:47 -0500 Subject: [PATCH] Update transmit.py remove pull-up on pttPin --- transmit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/transmit.py b/transmit.py index 60036a26..13d2bc1a 100644 --- a/transmit.py +++ b/transmit.py @@ -437,8 +437,8 @@ if __name__ == "__main__": GPIO.output(txLed, 0) print("0") -# GPIO.setup(pttPin, GPIO.IN, pull_up_down=GPIO.PUD_UP) - + GPIO.setup(pttPin, GPIO.IN) + while (True): sleep(0.1) GPIO.wait_for_edge(pttPin, GPIO.FALLING)