Simple test

Ensure your device works with this simple test.

examples/morsecode_simpletest.py
import time
import board
from morsecode import Emitter

# Using Internal led
internal_led = Emitter(board.D13)

MESSAGE = "Hugo AKA the Architect"

while True:
    print(f"Sending {MESSAGE} to the internal led in 3 seconds")
    time.sleep(3)
    print("starting")
    internal_led.outmorse(MESSAGE)
    print("Message Ended")