Skip to content

Commit

Permalink
[examples] Fix SysId example references to shooter subsystem (wpilibs…
Browse files Browse the repository at this point in the history
  • Loading branch information
Advay17 authored Nov 28, 2024
1 parent 62338c7 commit f377a9c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,19 @@ public void configureBindings() {
m_driverController
.a()
.and(m_driverController.leftBumper())
.whileTrue(m_drive.sysIdQuasistatic(SysIdRoutine.Direction.kForward));
.whileTrue(m_shooter.sysIdQuasistatic(SysIdRoutine.Direction.kForward));
m_driverController
.b()
.and(m_driverController.leftBumper())
.whileTrue(m_drive.sysIdQuasistatic(SysIdRoutine.Direction.kReverse));
.whileTrue(m_shooter.sysIdQuasistatic(SysIdRoutine.Direction.kReverse));
m_driverController
.x()
.and(m_driverController.leftBumper())
.whileTrue(m_drive.sysIdDynamic(SysIdRoutine.Direction.kForward));
.whileTrue(m_shooter.sysIdDynamic(SysIdRoutine.Direction.kForward));
m_driverController
.y()
.and(m_driverController.leftBumper())
.whileTrue(m_drive.sysIdDynamic(SysIdRoutine.Direction.kReverse));
.whileTrue(m_shooter.sysIdDynamic(SysIdRoutine.Direction.kReverse));
}

/**
Expand Down

0 comments on commit f377a9c

Please sign in to comment.