From dad1ac9e7acf4ee58d6095be49ef2b1841650743 Mon Sep 17 00:00:00 2001 From: Cole Deck Date: Sun, 23 Feb 2020 22:28:36 +0000 Subject: [PATCH] Update IP address --- pi_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pi_client.py b/pi_client.py index a7efac3..9619e76 100644 --- a/pi_client.py +++ b/pi_client.py @@ -3,7 +3,7 @@ import sort import control_motor import control_pixel -host = socket.gethostname() +host = 192.168.1.3 # socket.gethostname() port = 9001 # The same port as used by the server s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((host, port))