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 and katzuv committed Feb 16, 2025
1 parent 2740b0e commit 1d9f9a5
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 1d9f9a5

Please sign in to comment.