From 771c9d6aafb0442beedaa2cee9ceb02171587e70 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Tue, 23 Jul 2024 14:04:05 -0400 Subject: [PATCH] Update rpitx.py print Led info --- rpitx.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rpitx.py b/rpitx.py index 21854578..e8fcf468 100644 --- a/rpitx.py +++ b/rpitx.py @@ -409,6 +409,7 @@ if __name__ == "__main__": print(callsign) GPIO.setmode(GPIO.BCM) # added to make Tx LED work on Pi 4 print(txLed) + print(txLedOn) GPIO.setup(txLed, GPIO.OUT) print("Programming FM module!\n"); @@ -796,6 +797,8 @@ if __name__ == "__main__": if (command_tx == True): output(txLed, txLedOn) + print(txLed) + print(txLedOn) sleep(4.2) elif (mode == 'e'): print("Repeater") @@ -839,6 +842,8 @@ if __name__ == "__main__": # command_control_check() if (command_tx == True): output(txLed, txLedOn) + print(txLed) + print(txLedOn) sleep(4.2) else: print("No Low Pass Filter so no telemetry transmit. See http://cubesatsim.org/wiki for instructions on how to build the BPF.")