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
|
from time import sleep
import os
import sys
import glob
import bluetooth
import re
server_sock = bluetooth.BluetoothSocket(bluetooth.RFCOMM)
server_sock.bind(("", bluetooth.PORT_ANY))
server_sock.listen(1)
port = server_sock.getsockname()[1]
print(f"Waiting for connection on RFCOMM channel {port}...\r")
recv_sock, client_info = server_sock.accept()
print(f"Connected to {client_info[0]}.\r")
read = "0"
message = ""
while read != "1000":
read = recv_sock.recv(1024)
read = read.decode("utf-8").strip('\n')
print(f"{read}")
if "98" in read:
while read == "98":
read = sys.stdin.readline().strip('\n')
print(f"{read}")
with open("position.txt", "r") as f:
for line in f:
line = line.strip("\n")
x, y = line.split(",")
x = int(x)
y = int(y)
recv_sock.send(f"98, {x}, {y}\n".encode())
# message = message + f"{x}, {y}, "
f.close()
read = "99"
else:
sleep(0.5)
# Acknowledge ÖS command
recv_sock.send(f"{read}, ".encode()) # Remember NEW LINE for ÖS to be able to read lines.
# Send DWM data
if read == "10":
sleep(1)
with open("position_mean.txt", "r") as f:
for line in f:
line = line.strip("\n")
x, y = line.split(",")
x = int(x)
y = int(y)
recv_sock.send(f"{x}, {y}, ".encode())
# message = message + f"{x}, {y}, "
f.close()
else:
with open("position.txt", "r") as f:
for line in f:
line = line.strip("\n")
x, y = line.split(",")
x = int(x)
y = int(y)
recv_sock.send(f"{x}, {y}, ".encode())
# message = message + f"{x}, {y}, "
f.close()
# Send angle data
with open("angle.txt", "r") as f:
for line in f:
angle = line.strip("\n")
recv_sock.send(f"{angle}, ".encode())
recv_sock.send("0, ".encode()) # Near goal
# message = message + "0, "
# Send LIDAR data
distances = []
for i in range(360):
distances.append(0)
with open("distances.txt", "r") as f:
for line in f:
a, d = line.split()
distances[int(a)] = int(d)
f.close()
for i in range(359):
recv_sock.send(f"{distances[i]}, ".encode())
recv_sock.send(f"{distances[359]}\n".encode())
print("Shutting down...")
server_sock.close()
|