From 1d46b3e2ab9d55872638da68795c9cd6127c1ef2 Mon Sep 17 00:00:00 2001 From: jgromes Date: Fri, 31 May 2019 11:04:04 +0200 Subject: [PATCH] [Morse] Removed Serial output --- src/protocols/Morse.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/protocols/Morse.cpp b/src/protocols/Morse.cpp index d7587bdb..9738ff37 100644 --- a/src/protocols/Morse.cpp +++ b/src/protocols/Morse.cpp @@ -115,13 +115,10 @@ size_t MorseClient::write(uint8_t b) { break; } } - Serial.print((char)b); - Serial.print('\t'); // check if the requested code was found in the array if(found) { // iterate over Morse code representation and output appropriate tones for(uint8_t i = 0; i < strlen(MorseTable[pos].m); i++) { - Serial.print(MorseTable[pos].m[i]); switch(MorseTable[pos].m[i]) { case '.': _phy->transmitDirect(_base); @@ -140,7 +137,6 @@ size_t MorseClient::write(uint8_t b) { _phy->standby(); delay(_dotLength); } - Serial.println(); // letter space delay(_dotLength * 3);