Update morse.cpp

corrected , and added ? characters
This commit is contained in:
Caleb Skurdal 2019-12-17 22:57:07 -08:00 committed by GitHub
parent cda86a1b12
commit 9d3194025c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,8 @@ static const PROGMEM struct Morse morse_table[] = {
{'9', 0xde}, // 11011110
{'0', 0xdf}, // 11011111
{'.', 0xd5}, // 110010101
{'?', 0xd3}, // 110110011
{',', 0xd3}, // 110110011 //AD7U 20191217
{'?', 0xcc}, // 11001100 //AD7U 20191217 - Added
};
static void morseLetter(char c){