forked from suyashb95/SoftwareOscilloscope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SocketPlot-Test.py
46 lines (39 loc) · 1.28 KB
/
SocketPlot-Test.py
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
import asyncore, socket, time
import numpy as np
from collections import deque
from SoftOscilloscope import SocketClientPlot
from multiprocessing import Process
data = np.linspace(-np.pi, np.pi, 50)
class Server(asyncore.dispatcher):
def __init__(self, address):
asyncore.dispatcher.__init__(self)
self.create_socket(socket.AF_INET,socket.SOCK_STREAM)
self.bind(address)
self.listen(5)
return
def handle_accept(self):
global data
client, addr = self.accept()
print("Connected to " + str(addr))
while(1):
try:
a = str(round(50 * np.sin(data[0]), 3))
b = str(round(20*data[0], 3))
client.send((a + "," + b + '\n').encode())
data = np.roll(data, 1)
time.sleep(0.05)
except Exception as e:
print(e)
return
def handle_close(self):
self.close()
print("Closing server.")
if __name__ == '__main__':
address = ('0.0.0.0',5000)
server = Server(address)
try:
print("Server listening on " + str(address))
asyncore.loop(0.2, use_poll=True)
except KeyboardInterrupt:
print("Closing server.")
server.close()