Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started