From 66b95ce394299fa551917f017d407d7ce492f18e Mon Sep 17 00:00:00 2001 From: Alan Wang <44191076+alankrantas@users.noreply.github.com> Date: Sun, 16 Jan 2022 12:09:24 +0800 Subject: [PATCH] Update rc_car.py --- rc_car/rc_car.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc_car/rc_car.py b/rc_car/rc_car.py index b8e1200..fa02cc6 100644 --- a/rc_car/rc_car.py +++ b/rc_car/rc_car.py @@ -19,7 +19,7 @@ motor_right_B.write_digital(0) motor_left_A.write_digital(0) motor_left_B.write_digital(0) -display.show(Image.SQUARE) +display.show(Image.HAPPY) while True: direction = radio.receive() @@ -51,7 +51,7 @@ while True: motor_left_A.write_digital(0) motor_left_B.write_analog(SPEED) else: - display.show(Image.SQUARE) + display.show(Image.HAPPY) motor_right_A.write_digital(0) motor_right_B.write_digital(0) motor_left_A.write_digital(0)