Skip to content
This repository has been archived by the owner on Feb 3, 2023. It is now read-only.

Commit

Permalink
increased the minimum turn radius in ackerman so the wheels don't ove…
Browse files Browse the repository at this point in the history
…r steer as much, which could damage the hardware.
  • Loading branch information
Miro Voellmy committed Jun 9, 2020
1 parent e9048d6 commit 50c88aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rover.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(self):
self.wheel_y = 20.0


max_steering_angle = 60
max_steering_angle = 45
self.ackermann_r_min = abs(
self.wheel_y) / math.tan(max_steering_angle * math.pi / 180.0) + self.wheel_x

Expand Down

0 comments on commit 50c88aa

Please sign in to comment.