From 68b85e6fa0b2edc826ea30a1217c503a9a189793 Mon Sep 17 00:00:00 2001 From: Reed Nightingale Date: Sat, 25 Jan 2020 15:54:06 -0800 Subject: [PATCH] Add a brief pause before continuing to play the actual characters --- morse.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/morse.cpp b/morse.cpp index 96198ec..c8f06f5 100644 --- a/morse.cpp +++ b/morse.cpp @@ -109,6 +109,8 @@ void morseText(char *text, uint16_t dit_duration_ms){ int16_t total_counts = 0; tone(CW_TONE, globalSettings.cwSideToneFreq-100); delay(100); + noTone(CW_TONE); + delay(100); enc_read();//Don't count initial tone against total_counts while(*text && (abs(total_counts) < 10)){ morseLetter(*text++, dit_duration_ms);