You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To use a PID(f) controller with Roadrunner trajectories, you need to use async trajectories so that the PID controller can run in the background. You can do this by "
drive.followTrajectoryAsync(trajectory); "
You will also need to add another line of code inside of your loop:
drive.followTrajectoryAsync(trajectory);
For more information, consider looking at the roadrunner page on async following.
The text was updated successfully, but these errors were encountered:
To use a PID(f) controller with Roadrunner trajectories, you need to use async trajectories so that the PID controller can run in the background. You can do this by "
drive.followTrajectoryAsync(trajectory); "
You will also need to add another line of code inside of your loop:
drive.followTrajectoryAsync(trajectory);
For more information, consider looking at the roadrunner page on async following.
The text was updated successfully, but these errors were encountered: