From 622e0f58076958fd8f085cb468c1d363fa7dec15 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 22 May 2025 10:37:36 -0400 Subject: [PATCH] Update transmit.py add 2s delay --- transmit.py | 1 + 1 file changed, 1 insertion(+) diff --git a/transmit.py b/transmit.py index 450e65d1..d91c133b 100644 --- a/transmit.py +++ b/transmit.py @@ -820,6 +820,7 @@ if __name__ == "__main__": if (no_command == False): system("sudo systemctl stop command") print("stopping C2C") + sleep(2) GPIO.setmode(GPIO.BCM) # added to make Tx LED work on Pi Zero 2 and Pi 4 GPIO.setup(txLed, GPIO.OUT) output(txLed, txLedOn)