From e437d83c6726ad1e8a42c2721787fbfed5e1e295 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Tue, 29 Jun 2021 15:17:29 -0400 Subject: [PATCH] fixed version wording --- rpitx.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rpitx.py b/rpitx.py index 8e367608..a7005ee2 100644 --- a/rpitx.py +++ b/rpitx.py @@ -17,20 +17,20 @@ GPIO.setup(27, GPIO.IN, pull_up_down=GPIO.PUD_UP) transmit = False if GPIO.input(12) == False: - print("vB5 or Later") + print("Version is v1 with UHF BPF") transmit = True txLed = 27 txLedOn = 1 txLedOff = 0 elif GPIO.input(27) == False: - print("TFB") + print("Version is TFB") transmit = True txLed = 22 txLedOn = 0 txLedOff = 1 elif GPIO.input(13) == False: - print("UHF vB5 or Later") - print("UHF transmit not implemented yet") + print("Version is v1 with VHF BPF") + print("VHF transmit not implemented yet") # transmit = True txLed = 27 txLedOn = 1