Skip to content
Vishwas Parpattegar edited this page Sep 3, 2025 · 1 revision

Morse Code Quest

Objective

Flash a sequence in Morse code using an external library.

Requirements

  • Use an external Morse code library
  • Implement LED flashing functionality
  • Display a specific message in Morse code

Expected Output

  • Convert "HELLO" to Morse: .... . .-.. .-.. ---
  • Flash LED with correct timing (dots: 200ms, dashes: 600ms)

Hints

  • You can find a suitable Library on PlatformIO Registry
  • You can add a library to your project by including it in the lib_deps section in your platformio.ini file.

Example

[env:esp32doit-devkit-v1]
platform = espressif32
board = esp32doit-devkit-v1
framework = arduino
lib_deps = morse-code-library
Clone this wiki locally