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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
import numpy as np
import pyaudio
import threading
from utils import *
"""
Play a single frequency.
:param freq: Frequency in Hz.
:param amplitude: Amplitude of the frequency (0.0 to 1.0).
:param duration: Duration of the sound in seconds.
:param samplingRate: Sampling rate in Hz.
"""
def play_frequency(freq, amplitude, duration=1.0, samplingRate=44100, p=None):
# Generate sample for the given frequency as a float32 array
samples = (amplitude * np.sin(2*np.pi*np.arange(samplingRate*duration)*freq/samplingRate)).astype(np.float32).tobytes()
# Open stream
stream = p.open(format=pyaudio.paFloat32,
channels=1,
rate=samplingRate,
output=True)
stream.write(samples)
# Stop and close the stream
stream.stop_stream()
stream.close()
# p.terminate()
"""
Use threads to play multiple frequencies simultaneously.
:param freq_map: A dictionary with frequency (Hz) as keys and amplitude (0.0 to 1.0) as values.
:param duration: Duration of the sound in seconds.
:param samplingRate: Sampling rate in Hz.
"""
def play_frequencies_separately(freq_map, duration=1.0, samplingRate=44100):
p = pyaudio.PyAudio()
threads = []
for freq, amplitude in freq_map.items():
thread = threading.Thread(target=play_frequency, args=(freq, amplitude, duration, samplingRate, p))
threads.append(thread)
thread.start()
# Wait for all threads to complete
for thread in threads:
thread.join()
p.terminate()
# hello in binary
# data = "01101000 01100101 01101100 01101100 01101111"
# convert string to binary representation
# transmit string
"""
:param data: A string of characters.
"""
def transmit_string(data):
data_list = string_to_binary(data)
for i in range(len(data_list)):
freq_map = {}
start_freq = 18000
for j in range(len(data_list[i])):
if data_list[i][j] == "0":
freq_map[start_freq + j * 250] = 0.0
if data_list[i][j] == "1":
freq_map[start_freq + j * 250] = 1.0
# print(freq_map)
play_frequencies_separately(freq_map, duration=1000)
"""
:param data: A list of peak frequencies.
return: A string of characters.
"""
def receive_string(data, start_freq=18000, freq_step=250):
binary = ['0'] * 8
for item in data:
freqPosition = (item - start_freq) // freq_step
if 0 <= freqPosition < 8: binary[freqPosition] = '1'
binary_string = ''.join(binary)
try:
return chr(int(binary_string, 2))
except ValueError:
return "Error: Invalid binary data"
# Example usage
# data for the letter h
# # 01101000
# data = [18250, 18500, 19000]
# decoded_string = receive_string(data)
# print(decoded_string)
# transmit_string("h")
class LinkLayer:
def __init__(self, start_freq=19800):
self.start_freq = start_freq
self.freq_range = 200
self.sampling_rate = 44100
self.p = pyaudio.PyAudio()
self.isReceiving = False
self.isEstablished = False
self.bytes_per_transmit = 1
def transmit_string(self, data):
data_list = string_to_binary(data)
play_data(data_list, self.start_freq, self.freq_range, self.bytes_per_transmit, self.p)
def send_data(self):
while True:
if not self.isReceiving:
user_input = input("Enter data to send: ")
if user_input == "exit" or user_input == "q":
break
self.transmit_string(user_input)
else:
print("Currently receiving data, please wait...")
# take in range width, the number of bytes, and the bytes themselves, and starting freq
# cmdline args: data, start freq, bytes per transmit, frequency range
# 18500, 1000 range
# vlistener takes in no data.
def main():
link_layer = LinkLayer()
# Create a thread for sending data
send_thread = threading.Thread(target=link_layer.send_data)
# Start the threads
send_thread.start()
if __name__ == "__main__":
main()
|