Skip to content

Serial Talker

Vishwas Parpattegar edited this page Sep 3, 2025 · 2 revisions

Serial Talker Quest - Repeat After Me! 🎤

Objective

Learn Serial Communication by building a chatty program that loves what you say so much it repeats everything 3 times with enthusiasm!

Requirements

  • Set up your Arduino's voice (serial communication at 9600 baud)
  • Make it listen for incoming messages
  • Repeat it 3 times with an exclamation mark!

Expected Output

Your Message: Hello
Your Arduino messages back:
Hello!
Hello!
Hello!

Hints

  • Serial.begin(9600) - Initialize serial communication
  • Serial.available() - Check if data is available to read
  • Serial.readString() - Read incoming string data
  • Serial.println() - Send text output to serial monitor
  • delay() - Pause execution for specified milliseconds

Bonus Challenge

  • Make it ask for your name and have a custom greeting for each member on your team!
  • Every time you chat with it, it gets more excited and adds another exclamation mark!!
Clone this wiki locally