commit d777cf6f61f35cf02fa27206e509010eaecd143c Author: Eilon Zohar Date: Fri Jun 20 14:44:59 2025 +0200 First commit - interlock python script diff --git a/interlock/Interlock_socket_script.py b/interlock/Interlock_socket_script.py new file mode 100644 index 0000000..10a024b --- /dev/null +++ b/interlock/Interlock_socket_script.py @@ -0,0 +1,21 @@ +import socket +import time + +ip = "0.0.0.0" # Listen to all channels +port = 5005 # Should match .ino + +time.sleep (5) + + +with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: + s.bind((ip, port)) + s.listen() + print(f"Listening") + + while True: + conn, addr = s.accept() + with conn: + data = conn.recv(1024) + if data: + print(f"Received from {addr}: {data.decode().strip()}") +