-
-
Save AJMartel/9de66570a914a8b77bf871bd20c61310 to your computer and use it in GitHub Desktop.
Simple morse en- & decoding for Arduino (including LED Example)Build after the specs on http://en.wikipedia.org/wiki/Morse_code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Copyright (c) 2015 Matthias Esterl | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in | |
all copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Define the LED Pin | |
#define PIN_OUT 9 | |
//Define unit length in ms | |
#define UNIT_LENGTH 100 | |
//Build a struct with the morse code mapping | |
static const struct {const char letter, *code;} MorseMap[] = | |
{ | |
{ 'A', ".-" }, | |
{ 'B', "-..." }, | |
{ 'C', "-.-." }, | |
{ 'D', "-.." }, | |
{ 'E', "." }, | |
{ 'F', "..-." }, | |
{ 'G', "--." }, | |
{ 'H', "...." }, | |
{ 'I', ".." }, | |
{ 'J', ".---" }, | |
{ 'K', "-.-" }, | |
{ 'L', ".-.." }, | |
{ 'M', "--" }, | |
{ 'N', "-." }, | |
{ 'O', "---" }, | |
{ 'P', ".--." }, | |
{ 'Q', "--.-" }, | |
{ 'R', ".-." }, | |
{ 'S', "..." }, | |
{ 'T', "-" }, | |
{ 'U', "..-" }, | |
{ 'V', "...-" }, | |
{ 'W', ".--" }, | |
{ 'X', "-..-" }, | |
{ 'Y', "-.--" }, | |
{ 'Z', "--.." }, | |
{ ' ', " " }, //Gap between word, seven units | |
{ '1', ".----" }, | |
{ '2', "..---" }, | |
{ '3', "...--" }, | |
{ '4', "....-" }, | |
{ '5', "....." }, | |
{ '6', "-...." }, | |
{ '7', "--..." }, | |
{ '8', "---.." }, | |
{ '9', "----." }, | |
{ '0', "-----" }, | |
{ '.', ".-.-.-" }, | |
{ ',', "--..--" }, | |
{ '?', "..--.." }, | |
{ '!', "-.-.--" }, | |
{ ':', "---..." }, | |
{ ';', "-.-.-." }, | |
{ '(', "-.--." }, | |
{ ')', "-.--.-" }, | |
{ '"', ".-..-." }, | |
{ '@', ".--.-." }, | |
{ '&', ".-..." }, | |
}; | |
void doMorse(int pin, const char *string) { | |
size_t i, j; | |
for( i = 0; string[i]; ++i ) | |
{ | |
for( j = 0; j < sizeof MorseMap / sizeof *MorseMap; ++j ) | |
{ | |
if( toupper(string[i]) == MorseMap[j].letter ) | |
{ | |
emitMorse(pin, MorseMap[j].code); | |
break; | |
} | |
} | |
emitMorse(pin, " "); //Add tailing space to separate the chars | |
} | |
} | |
void emitMorse(int pin, const char *morseString) { | |
for(int i=0; morseString[i]; i++) | |
{ | |
switch( morseString[i] ) | |
{ | |
case '.': //dit | |
digitalWrite( pin, HIGH ); | |
delay( UNIT_LENGTH ); | |
digitalWrite( pin, LOW ); | |
delay( UNIT_LENGTH ); | |
break; | |
case '-': //dah | |
digitalWrite( pin, HIGH ); | |
delay( UNIT_LENGTH*3 ); | |
digitalWrite( pin, LOW ); | |
delay( UNIT_LENGTH ); | |
break; | |
case ' ': //gap | |
delay( UNIT_LENGTH ); | |
} | |
} | |
} | |
void setup() | |
{ | |
pinMode( PIN_OUT, OUTPUT ); | |
digitalWrite( PIN_OUT, LOW ); | |
} | |
void loop() | |
{ | |
doMorse(PIN_OUT, "SOS "); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment