Ad
  • Custom User Avatar

    Hmm... I think that's the first thing I tried, and didn't work at the time for some reason. Not very familiar w/ the CW interface yet. Thanks for pointing it out :)

  • Custom User Avatar

    A Python dictionary I made for running my own tests:

    morse = (".---- ..--- ...-- ....- ..... -.... --... ---.. ----. ----- "
             ".- -... -.-. -.. . ..-. --. .... .. .--- -.- .-.. -- -. --- "
             ".--. --.- .-. ... - ..- ...- .-- -..- -.-- --..").split(' ')
    abc = '1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ'
    MORSE_CODE = dict(zip(morse, abc))```