Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated default PIDs to those best for standard car #1146

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions donkeycar/templates/cfg_path_follow.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,9 +644,9 @@
PATH_SEARCH_LENGTH = None # number of points to search for closest point, None to search entire path
PATH_LOOK_AHEAD = 1 # number of points ahead of the closest point to include in cte track
PATH_LOOK_BEHIND = 1 # number of points behind the closest point to include in cte track
PID_P = -0.5 # proportional mult for PID path follower
PID_P = 0.35 # proportional mult for PID path follower
PID_I = 0.000 # integral mult for PID path follower
PID_D = -0.3 # differential mult for PID path follower
PID_D = 0.1 # differential mult for PID path follower
PID_THROTTLE = 0.50 # constant throttle value during path following
USE_CONSTANT_THROTTLE = False # whether or not to use the constant throttle or variable throttle captured during path recording
PID_D_DELTA = 0.25 # amount the inc/dec function will change the D value
Expand Down