Skip to content

Commit

Permalink
Change executable path
Browse files Browse the repository at this point in the history
  • Loading branch information
kna27 committed Dec 11, 2022
1 parent a031322 commit 03f737c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions 1_camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
parser.add_argument("--light_range", default = [140, 255], nargs = "+", help = "List with 2 values between 0-255 (a low threshold and high threshold) on grayscale. Anything between these 2 values will be counted as light.")
args = parser.parse_args()

#Initializes the pong game
os.startfile("Interactive_Pong\Build\Pong.exe")
#Initializes the game
os.startfile("Snake\Build\interactive-design-snake.exe")

# Create UDP socket to use for sending (and receiving)
sock = U.UdpComms(udpIP="127.0.0.1", portTX=8000, portRX=8001, enableRX=True, suppressWarnings=True)
Expand Down
4 changes: 2 additions & 2 deletions 2_camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
parser.add_argument("--light_range", default = [140, 255], nargs = "+", help = "List with 2 values between 0-255 (a low threshold and high threshold) on grayscale. Anything between these 2 values will be counted as light.")
args = parser.parse_args()

#Initializes the pong game
os.startfile("Interactive_Pong\Build\Pong.exe")
#Initializes the game
os.startfile("Snake\Build\interactive-design-snake.exe")

# Create UDP socket to use for sending (and receiving)
sock = U.UdpComms(udpIP="127.0.0.1", portTX=8000, portRX=8001, enableRX=True, suppressWarnings=True)
Expand Down
4 changes: 2 additions & 2 deletions 4_camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
parser.add_argument("--light_range", default = [140, 255], nargs = "+", help = "List with 2 values between 0-255 (a low threshold and high threshold) on grayscale. Anything between these 2 values will be counted as light.")
args = parser.parse_args()

#Initializes the pong game
os.startfile("Interactive_Pong\Build\Pong.exe")
#Initializes the game
os.startfile("Snake\Build\interactive-design-snake.exe")

# Create UDP socket to use for sending (and receiving)
sock = U.UdpComms(udpIP="127.0.0.1", portTX=8000, portRX=8001, enableRX=True, suppressWarnings=True)
Expand Down

0 comments on commit 03f737c

Please sign in to comment.