Update transmit.py fix variable

master-b-d
Alan Johnston 1 month ago committed by GitHub
parent f566645b71
commit ea71c0537d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -957,7 +957,7 @@ if __name__ == "__main__":
if (input(squelch) == False) and (command_tx == True): if (input(squelch) == False) and (command_tx == True):
doppler_freq_hz = doppler_start_hz + (time.perf_counter() - start_time) * 60 doppler_freq_hz = doppler_start_hz + (time.perf_counter() - start_time) * 60
print(doppler_freq_hz) print(doppler_freq_hz)
tx = "{:.3f}".format(doppler_freq/1000) tx = "{:.3f}".format(doppler_freq_hz/1000)
print(tx) print(tx)
print("Carrier detected, starting repeater") print("Carrier detected, starting repeater")
output(txLed, 1) output(txLed, 1)

Loading…
Cancel
Save

Powered by TurnKey Linux.