From 522bd87c9cc6ca094b4c439744163d05a522d4cf Mon Sep 17 00:00:00 2001 From: Simon Pirkelmann Date: Tue, 13 Aug 2019 14:11:03 +0200 Subject: [PATCH] removed comments --- remote_control/keyboard_controller.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/remote_control/keyboard_controller.py b/remote_control/keyboard_controller.py index ae9f730..770e8f2 100644 --- a/remote_control/keyboard_controller.py +++ b/remote_control/keyboard_controller.py @@ -13,12 +13,7 @@ pygame.display.set_mode((640, 480)) rc_socket = socket.socket() try: - rc_socket.connect((ip, 1234)) # connect to robot - #rc_socket.connect(('192.168.4.1', 1234)) # connect to robot - #rc_socket.connect(('192.168.1.101', 1234)) # connect to robot - #rc_socket.connect(('192.168.1.102', 1234)) # connect to robot - #rc_socket.connect(('192.168.1.103', 1234)) # connect to robot except socket.error: print("could not connect to socket")