From e09eaa5ce8e55fe9d650c9c3d1e1603c7c889034 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 18 Jun 2026 09:30:28 -0400 Subject: [PATCH] Update transmit.py make txr string --- transmit.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/transmit.py b/transmit.py index eceef102..6c049f0d 100644 --- a/transmit.py +++ b/transmit.py @@ -421,7 +421,8 @@ if __name__ == "__main__": txf = float(config[6]) tx = "{:.4f}".format(txf) if (mode == 'e'): - txr = (txf - 290.0) # - 0.1 # Cross Band Repeater mode transmit frequency in 2m band + txrf = (txf - 290.0) # - 0.1 # Cross Band Repeater mode transmit frequency in 2m band + txr = "{:.4f}".format(txrf) print("Transmit frequency: ",txr) else: print("Transmit frequency: ",tx)