mirror of
https://github.com/PotentiaRobotics/robot-gui.git
synced 2025-04-03 20:00:16 -04:00
>180 not allowed lol
This commit is contained in:
parent
221b3d2209
commit
edfca4ae08
6
app.py
6
app.py
|
@ -47,13 +47,14 @@ def sendData():
|
|||
|
||||
rot = request.form.get("rot")
|
||||
try:
|
||||
rot = int(rot)
|
||||
rot = int(rot)%360
|
||||
rot = rot-360 if rot > 180 else rot
|
||||
print("Activated")
|
||||
import socket
|
||||
s=socket.socket()
|
||||
host="raspberrypi" #This is your Server IP!
|
||||
port=2345
|
||||
s.settimeout(5)
|
||||
s.settimeout(10)
|
||||
s.connect((host,port))
|
||||
s.send(str(rot).encode())
|
||||
rece=s.recv(1024)
|
||||
|
@ -66,6 +67,7 @@ def sendData():
|
|||
except:
|
||||
return render_template("manual.html", conf='Timeout: Unable to reach Pi')
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run(debug=True)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user