morse

Morse interpreter using X key events
git clone https://git.sinitax.com/sinitax/morse
Log | Files | Refs | LICENSE | sfeed.txt

lut.c (495B)


      1static const char *morse_lut[] = {
      2	"A" ".-",
      3	"B" "-...",
      4	"C" "-.-.",
      5	"D" "-..",
      6	"E" ".",
      7	"F" "..-.",
      8	"G" "--.",
      9	"H" "....",
     10	"I" "..",
     11	"J" ".---",
     12	"K" "-.-",
     13	"L" ".-..",
     14	"M" "--",
     15	"N" "-.",
     16	"O" "---",
     17	"P" ".--.",
     18	"Q" "--.-",
     19	"R" ".-.",
     20	"S" "...",
     21	"T" "-",
     22	"U" "..-",
     23	"V" "...-",
     24	"W" ".--",
     25	"X" "-..-",
     26	"Y" "-.--",
     27	"Z" "--..",
     28	"1" ".----",
     29	"2" "..---",
     30	"3" "...--",
     31	"4" "....-",
     32	"5" ".....",
     33	"6" "-....",
     34	"7" "--...",
     35	"8" "---..",
     36	"9" "----.",
     37	"0" "-----"
     38};
     39
     40