Question: Problem 5 - Morse Code Write a program that lets you to input a word or sentence into the serial monitor and translate it to
Problem 5 - Morse Code
-
Write a program that lets you to input a word or sentence into the serial monitor and translate it to Morse code. Have an LED flash the Morse code.
- Hint: Read in inputted string and cycle through it using loops
- Optional: Print out Morse code in Serial Monitor
- Try your best with this problem, but do not worry if you cant finish it
- Morse code array:
String morse[26] = {".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", // A-I ".---", "-.-", ".-..", "--", "-.", "---", ".--.", "--.-", ".-.", // J-R "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--.."}; // S-Z - Serial read functions:
if (Serial.available() > 0) // send data only when you receive data Serial.read() // reads incoming serial data Serial.readString() // reads characters from the serial buffer into a Str
- Morse code array:
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
