About 153,000 results
Open links in new tab
  1. python - morse code to english python3 - Stack Overflow

    Aug 19, 2015 · But i want to convert Morse Code to English I have attempted to do it one charecter at a time, but the problem is that morse code letters are not 1 charecter long like english letters, so E is "."

  2. java - Morse code translator (simple) - Stack Overflow

    Once found use the same index from english in morse. I am assuming english and morse have same length and morse[0] is the translation of english[0] in morse code.

  3. C++ Morse to english - Stack Overflow

    Nov 23, 2019 · So I have an assignment where I have to create a program that translates English text into morse code, and morse code to english text. So far I have done the English text to morse code …

  4. How do I use a button to input Morse code? - Stack Overflow

    Jan 14, 2025 · This is the current code I have right now, sorry for my not being clear. The button is on a breadboard connected to a raspberry pi. And what I am trying to do is take inputs from the button in …

  5. Morse Code to English Translator gives ArrayIndexoutofBounds

    Jul 6, 2021 · I have to create morse to English and vice versa translator. The English to morse part works but whenever I try to enter something in morse it gives me an ArrayIndexOutofBounds …

  6. What's the function for Morse code to English text?

    One nice feature of the table lookup is that you can get the code working for 2 entries, then add more entries without having to change the code. You can use the same table for mapping English letters to …

  7. encoder - Morse Code Converter in C - Stack Overflow

    Jan 20, 2015 · Yes its homework We were suppose to have char 2D array holding character with size limit of 255 char char string[100][255]; Program neede: change the input morse code by a user to …

  8. Translating English into Morse Code and vice versa

    Aug 23, 2014 · This project involves writing a program to translate Morse Code into English and English into Morse Code. Your program shall prompt the user to specify the desired type of translation, input …

  9. How to translate Morse Code to English in C++? - Stack Overflow

    Dec 26, 2020 · I would use an std::unordered_map<std::string, char> that maps morse code to English characters. You can then iterate through each morse code element and look up the english character …

  10. Homework: Morse code to English characters - Stack Overflow

    Dec 12, 2023 · In the following code only the first . or - are picked up and it doesn't match to any of the letters defined in the switch statements below. Any idea how I can change it to see the entire Morse le...