Skip to content

Commit

Permalink
Added quad test routine for SysID
Browse files Browse the repository at this point in the history
  • Loading branch information
Modular-Holmes authored Apr 1, 2024
1 parent 4d60c29 commit fa78e86
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ public RobotContainer() {
"Flywheel SysId (Dynamic Forward)", flywheel.sysIdDynamic(SysIdRoutine.Direction.kForward));
autoChooser.addOption(
"Flywheel SysId (Dynamic Reverse)", flywheel.sysIdDynamic(SysIdRoutine.Direction.kReverse));
autoChooset.addOption(
"Drive SysID (Quad Test)", new SequentialCommandGroup(drive.sysIdQuasistatic(SysIdRoutine.Direction.kForward),drive.sysIdQuasistatic(SysIdRoutine.Direction.kReverse),
drive.sysIdDynamic(SysIdRoutine.Direction.kForward),drive.sysIdDynamic(SysIdRoutine.Direction.kReverse));

// Configure the button bindings
configureButtonBindings();
Expand Down

0 comments on commit fa78e86

Please sign in to comment.