Answered step by step
Verified Expert Solution
Link Copied!

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

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts

Authors: David Kroenke, David Auer, Scott Vandenberg, Robert Yoder

9th Edition

0135188148, 978-0135188149, 9781642087611

Students also viewed these Databases questions

Question

Which personal relationships influenced you the most?

Answered: 1 week ago

Question

What were your most important educational experiences?

Answered: 1 week ago

Question

How was your life influenced by those events?

Answered: 1 week ago