From ea71c0537de83d027558ae0a3011aa0564094da7 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 18 Jun 2026 09:09:28 -0400 Subject: [PATCH] Update transmit.py fix variable --- transmit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transmit.py b/transmit.py index e922da92..82c9a20a 100644 --- a/transmit.py +++ b/transmit.py @@ -957,7 +957,7 @@ if __name__ == "__main__": if (input(squelch) == False) and (command_tx == True): doppler_freq_hz = doppler_start_hz + (time.perf_counter() - start_time) * 60 print(doppler_freq_hz) - tx = "{:.3f}".format(doppler_freq/1000) + tx = "{:.3f}".format(doppler_freq_hz/1000) print(tx) print("Carrier detected, starting repeater") output(txLed, 1)