← Back to ratslair.com
aboutsummaryrefslogtreecommitdiff
path: root/bt.py
diff options
context:
space:
mode:
authorEdvin <[email protected]>2025-04-30 10:49:29 +0200
committerEdvin <[email protected]>2025-04-30 10:49:29 +0200
commit115b28f0cd219b98209839123c656771c252f6a9 (patch)
tree9f0e27622b0bc25930b3f787e3ac20de8359f508 /bt.py
parent1368991f98f7a6eeeb48d2d9adaf7cd0b19e19f6 (diff)
Testinggggg
Diffstat (limited to 'bt.py')
-rwxr-xr-xbt.py17
1 files changed, 4 insertions, 13 deletions
diff --git a/bt.py b/bt.py
index 4ec97b9..23ed7b2 100755
--- a/bt.py
+++ b/bt.py
@@ -1,4 +1,3 @@
-import RPi.GPIO as GPIO
from time import sleep
import os
@@ -38,9 +37,10 @@ while read != "1000":
with open("position.txt", "r") as f:
for line in f:
line = line.strip("\n")
- x, y, z, qf = line.split()
- x = x.translate({ord(c): None for c in 'x:'})
- y = y.translate({ord(c): None for c in 'y:'})
+ x, y, z, qf = line.split(",")
+ x = float(x) * 1000
+ y = float(y) * 1000
+ print(f"x: {x}, y: {y}")
recv_sock.send(f"{x}, {y}, ".encode())
# message = message + f"{x}, {y}, "
f.close()
@@ -68,14 +68,5 @@ while read != "1000":
# message = message + f"{distances[360]}\n"
# recv_sock.send(message.encode())
-
- # Send LIDAR data
- # if read == "77":
- # # Remove for KTS
- # recv_sock.send("EOD\n".encode())
-
- # Send DWM data
- # if read == "88":
-
print("Shutting down...")
server_sock.close()