Skip to content

Commit

Permalink
logging
Browse files Browse the repository at this point in the history
  • Loading branch information
SuragNuthulapaty committed Feb 24, 2024
1 parent 6ea53c7 commit f3ba8e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/moving_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@
time.sleep(dt)

while True:
motor_rotations.move_forward(left_motor, right_motor, 2)
motor_rotations.rotate_cw_90_deg(left_motor, right_motor)
# motor_rotations.move_forward(left_motor, right_motor, 2)
# motor_rotations.rotate_ccw_90_deg(left_motor, right_motor)
# motor_rotations.rotate_ccw_90_deg(left_motor, right_motor)
# motor_rotations.move_forward(left_motor, right_motor, 2)
# motor_rotations.rotate_ccw_90_deg(left_motor, right_motor)
# motor_rotations.move_forward(left_motor, right_motor, 2)
try:
pass
motor_rotations.move_forward(left_motor, right_motor, 2)
motor_rotations.rotate_cw_90_deg(left_motor, right_motor)
except KeyboardInterrupt:
print("here")
left_motor.stop()
right_motor.stop()
exit(0)

0 comments on commit f3ba8e7

Please sign in to comment.