From 659a3b4e2f189358685fe590bcd016ee9a3ccc01 Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Wed, 7 Sep 2022 13:52:24 +0200 Subject: [PATCH] :sparkles: --- square.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/square.py b/square.py index e204c0a..6385902 100644 --- a/square.py +++ b/square.py @@ -11,8 +11,8 @@ RIGHT_WHEEL_OFFSET = 4 CLOCKWISE_OFFSET = 0.96 def clockwise_square(arlo): - arlo.go_diff(POWER, POWER + RIGHT_WHEEL_OFFSET, 1, 0) - sleep(TURN_T) + arlo.go_diff(POWER, POWER + RIGHT_WHEEL_OFFSET, 0, 1) + sleep(TURN_T * 0.5) arlo.stop() sleep(0.5)