From a99043ae1ccb8dbf5a5c3622a4da16aef8caa641 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 22 Feb 2025 16:08:27 -0500 Subject: [PATCH] Update transmit.py add 1 sec between keys --- transmit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transmit.py b/transmit.py index 55c757e3..7fe1c380 100644 --- a/transmit.py +++ b/transmit.py @@ -811,7 +811,7 @@ if __name__ == "__main__": txf = float(tx) - 289.9 print("Transmit frequency: ",txf) while True: - sleep(0.5) + sleep(1) if (GPIO.input(squelch) == False): print("Carrier detected, starting repeater") GPIO.setmode(GPIO.BCM) # added to make Tx LED work on Pi Zero 2 and Pi 4