From ec9f50fd7551fe14d979d783d09fa25b4b17f3d5 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Mon, 6 Jul 2026 17:05:01 -0400 Subject: [PATCH] Update transmit.py slow CW and shorter inter dit timing --- transmit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/transmit.py b/transmit.py index d6951d81..933518cd 100644 --- a/transmit.py +++ b/transmit.py @@ -614,7 +614,7 @@ def cw_transmit_char(character): print(duration) while (duration != 0): transmit_carrier(duration * morse_timing) - sleep(morse_timing * 0.7) + sleep(morse_timing * 0.6) i=i+1 duration = morse_table[(ord(character.upper()) - ord('0')) % 44][i] if duration == 1: @@ -649,7 +649,7 @@ txc_pin = 7 squelch = 6 green = 16 powerPin = 16 -morse_timing = 0.08 # 0.1 +morse_timing = 0.09 # 0.1 command_tx = True