From 3b1c47b032434e5988591df86651abf84e6ae9a0 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sun, 30 Jul 2023 17:06:24 -0400 Subject: [PATCH] blink when turning aprs back on --- rpitx.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rpitx.py b/rpitx.py index b1ee2e17..0cdc8039 100644 --- a/rpitx.py +++ b/rpitx.py @@ -207,6 +207,9 @@ if __name__ == "__main__": if (command_tx == True): print("Turning on transmit") system("echo > command_tx True") + output(txLed, txLedOn) + sleep(0.5) + output(txLed, txLedff) else: print("Turning off transmit") system("echo > command_tx False")