-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathmorse-code-decoder.py
More file actions
127 lines (116 loc) · 2.9 KB
/
Copy pathmorse-code-decoder.py
File metadata and controls
127 lines (116 loc) · 2.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import winsound
import time
def create_dictionary():
# Create a dictionary object
dictionary_obj = {
"A": ".-",
"B": "-...",
"C": "-.-.",
"D": "-..",
"E": ".",
"F": "..-.",
"G": "--.",
"H": "....",
"I": "..",
"J": ".---",
"K": "-.-",
"L": ".-..",
"M": "--",
"N": "-.",
"O": "---",
"P": ".--.",
"Q": "--.-",
"R": ".-.",
"S": "...",
"T": "-",
"U": "..-",
"V": "...-",
"W": ".--",
"X": "-..-",
"Y": "-.--",
"Z": "--..",
" ":"/",
",":"--..--",
".":".-.-.-"
}
return dictionary_obj
def create_rev_dictionary():
# Create a dictionary object
rev_dictionary_obj = {
".-":"A",
"-...":"B",
"-.-.":"C",
"-..":"D",
".": "E",
"..-.": "F",
"--.": "G",
"....":"H",
"..":"I",
".---":"J",
"-.-":"K",
".-..":"L",
"--":"M",
"-.":"N",
"---":"O",
".--.":"P",
"--.-":"Q",
".-.":"R",
"...":"S",
"-":"T",
"..-":"U",
"...-":"V",
".--":"W",
"-..-":"X",
"-.--":"Y",
"--..":"Z",
"/":" ",
"--..--":",",
".-.-.-":"."
}
return rev_dictionary_obj
def beep(encoded_string):
bits = encoded_string
print(len(bits))
for bit in bits:
if '.' in bit:
# Beep sound
winsound.Beep(1000, 500)
if '-' in bit:
# Beep sound
winsound.Beep(1000, 1000) # Frequency: 1000 Hz, Duration: 500 milliseconds
if ' ' in bit:
time.sleep(0.9)
return bit
def search(dictionary_obj, search_string):
result = ""
for letter in search_string:
if letter.upper() in dictionary_obj:
result += dictionary_obj[letter.upper()] + " "
else:
result += "Not Found" + " "
return result.strip()
def rev_search(rev_dictionary_obj, rev_search_string):
# Split the input string by space to get tokens
tokens = rev_search_string.split()
result = ""
for token in tokens:
if token in rev_dictionary_obj:
result += rev_dictionary_obj[token]
else:
result += "Not Found" + " "
return result.strip()
def main():
# Create a dictionary
dictionary_obj = create_dictionary()
rev_dictionary_obj = create_rev_dictionary()
# Read input from the user
search_string = "Hello"
#rev_search_string = ". .-.. .-.. --- / .... .. / - .... . .-. ."
# Search for values based on the input string
result = search(dictionary_obj, search_string)
print("Encoded:", result)
rev_result = rev_search(rev_dictionary_obj, result)
print("Decoded:", rev_result)
beep(result)
if __name__ == "__main__":
main()