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

🔀Backmerge to dev #259

Merged
merged 12 commits into from
Dec 31, 2024
6 changes: 3 additions & 3 deletions ez-template-docs/tutorials/tuning_exit_condition_constants.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Ultimately you're tuning for 2 functions; timers and when to start timing for `p
### Tuning pid_wait()
The values to tune are in `default_constants()` in your `src/autons.cpp`.  The parameters are:
* The first number is the amount of time needed to exit when within the second number of your target  
* The third number is the amount of time needed to edit when within the fourth number of your target  
* The fifth number is the amount of time to edit when the velocity of the robot is 0  
* The third number is the amount of time needed to exit when within the fourth number of your target  
* The fifth number is the amount of time to exit when the velocity of the robot is 0  
* The sixth number is the amount of time to exit when you're pulling too many amps from your motors  
```cpp
void default_constants() {
Expand Down Expand Up @@ -77,4 +77,4 @@ void default_constants() {
chassis.pid_swing_chain_backward_constant_set(5_deg);
  // . . .
}
```
```
Loading