>180 not allowed lol

This commit is contained in:
FluffyCube9343 2023-03-11 14:55:55 -05:00
parent 221b3d2209
commit edfca4ae08

6
app.py
View File

@ -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)