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

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!