Turned off limit switches so climber would run.

This commit is contained in:
KyraRivera
2020-02-08 15:11:23 -07:00
parent 3ddc6037f9
commit 0015b078cb
2 changed files with 3 additions and 3 deletions
@@ -61,7 +61,7 @@ public class RobotContainer {
m_robotDrive.setDefaultCommand(new DriveWithJoystick(m_robotDrive, getDriverController()));
// drives motor with input from triggers on the opperator controller
m_robotIntake.setDefaultCommand(new RunIntakeWithTriggers(m_robotIntake, getOperatorController()));
// drives motor with input from triggers on the opperator controller
// drives climber with input from triggers on the opperator controller
m_robotClimber.setDefaultCommand(new RunClimberWithTriggers(m_robotClimber, getDriverController()));
// continually sends updates to the Blinkin LED controller to keep the lights on
m_robotLED.setDefaultCommand(new RunCommand(() -> m_robotLED.updateLED(), m_robotLED));