From c020681a892e42a75e06280028eb3c05a0eb6fa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Blo=C3=9F?= Date: Fri, 27 Oct 2023 23:12:41 +0200 Subject: [PATCH] fix port in right file --- Teams/green_twins/src/color_spectrum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Teams/green_twins/src/color_spectrum.py b/Teams/green_twins/src/color_spectrum.py index 311cb84..99c3bd3 100644 --- a/Teams/green_twins/src/color_spectrum.py +++ b/Teams/green_twins/src/color_spectrum.py @@ -3,7 +3,7 @@ HOST = "127.0.0.1" # localhost # HOST = "10.201.77.56" # localhost -PORT = 4321 # pixelflut-port +PORT = 1234 # pixelflut-port def get_draw_color_command(x,y,color): return f"PX {x} {y} {color}"