About 100,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 …

  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 …

  4. 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 …

  5. 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 …

  6. Converting Morse Code to English Text with Java - Stack Overflow

    Apr 11, 2015 · I recently had an assignment to convert English to Morse code and Morse Code to English. When inputting Morse Code, my teacher wants individual letters separated with 1 …

  7. java - Morse Code to English - Stack Overflow

    My problem right now is getting the "morse code to english" to work. the first part which converts english to morse is working perfectly. i know this has been asked before but i can't figure out …

  8. 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 …

  9. java - Morse Code to English, (If statement?) - Stack Overflow

    Dec 6, 2014 · The English to morse code part works fine, But the Morse code to English doesn't...I keep getting E's and T's , Is there a way to make so that if there's a space in …

  10. 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 …