Add a brief pause before continuing to play the actual characters

This commit is contained in:
Reed Nightingale 2020-01-25 15:54:06 -08:00
parent 0c575d222f
commit 68b85e6fa0

View File

@ -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);