Skip to content

Commit

Permalink
Fixed typo in example project
Browse files Browse the repository at this point in the history
  • Loading branch information
ssejrog committed Jun 5, 2024
1 parent 2c55b63 commit 7c3a386
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified EZ-Template-Example-Project-3.1.0-RC2.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion EZ-Template-Example-Project/src/autons.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void wait_until_change_speed() {
// When the robot gets to -6 inches, the robot will travel the remaining distance at a max speed of 30
chassis.pid_drive_set(-24_in, 30, true);
chassis.pid_wait_until(-6_in);
chassis.pid_speed_max_set(30); // After driving 6 inches at 30 speed, the robot will go the remaining distance at DRIVE_SPEED
chassis.pid_speed_max_set(DRIVE_SPEED); // After driving 6 inches at 30 speed, the robot will go the remaining distance at DRIVE_SPEED
chassis.pid_wait();
}

Expand Down

0 comments on commit 7c3a386

Please sign in to comment.