From 5f1285d5d8b57fcf5bb0a37339ea2bfd3e1724bc Mon Sep 17 00:00:00 2001 From: Paul Cutler Date: Tue, 4 Oct 2022 11:32:46 -0500 Subject: [PATCH] Fix issue #50 - E is a DIT and T is a DAH --- examples/pioasm_background_morse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/pioasm_background_morse.py b/examples/pioasm_background_morse.py index ac169ed..af5714f 100644 --- a/examples/pioasm_background_morse.py +++ b/examples/pioasm_background_morse.py @@ -55,10 +55,10 @@ WORD_SPACE = array.array("H", [LED_OFF | (4 * DIT_DURATION)]) # Letters and words can be created by concatenating ("+") the elements -E = DAH + LETTER_SPACE +E = DIT + LETTER_SPACE O = DAH + DAH + DAH + LETTER_SPACE S = DIT + DIT + DIT + LETTER_SPACE -T = DIT + LETTER_SPACE +T = DAH + LETTER_SPACE SOS = S + O + S + WORD_SPACE TEST = T + E + S + T + WORD_SPACE