; Morse code data table ; The leftmost 1 in each byte is a marker indicating ; the start of the sequence. The bits to its right ; represent the dots (0) and dashes (1) to be ; transmitted (leftmost first). b'00000101' ; A - dot-dash b'00011000' ; B - dash-dot-dot-dot b'00011010' ; C - dash-dot-dash-dot b'00001100' ; D - dash-dot-dot b'00000010' ; E - etc. b'00010010' ; F b'00001110' ; G b'00010000' ; H b'00000100' ; I b'00010111' ; J b'00001101' ; K b'00010100' ; L b'00000111' ; M b'00000110' ; N b'00001111' ; O b'00010110' ; P b'00011101' ; Q b'00001010' ; R b'00001000' ; S b'00000011' ; T b'00001001' ; U b'00010001' ; V b'00001011' ; W b'00011001' ; X b'00011011' ; Y b'00011100' ; Z b'00111111' ; 0 b'00101111' ; 1 b'00100111' ; 2 b'00100011' ; 3 b'00100001' ; 4 b'00100000' ; 5 b'00110000' ; 6 b'00111000' ; 7 b'00111100' ; 8 b'00111110' ; 9 b'01010101' ; . b'01110011' ; , b'01001100' ; ?