From 3830e47103534ee7c710264351b18b44ee4be0ca Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 29 Oct 2019 16:20:35 +0100 Subject: [PATCH] changed colours --- gametest_rev2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gametest_rev2.py b/gametest_rev2.py index 5aa345e..c36105d 100644 --- a/gametest_rev2.py +++ b/gametest_rev2.py @@ -677,7 +677,7 @@ while True: # one shot for changing the led colour if game_just_started: print('game just started, changed colour of leds to green') - change_led_colour(0, 200, 0) + change_led_colour(200, 0, 200) game_just_started = False # reset all the surfaces to be empty @@ -794,7 +794,7 @@ while True: # if another push of start is detected (i.e. the game is ending!) if not GPIO.input(pin_stop): # change led colour to red - change_led_colour(200, 0, 200) + change_led_colour(0, 200, 200) # reset the one shot latch for the end of game timer timer_game_ending_started = False