Skip to content

Commit b61378a

Browse files
committed
LEDs
1 parent 652495a commit b61378a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/frc/robot/RobotContainer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ public void configureButtonBindings() {
327327

328328
JoystickButton xBoxX = new JoystickButton(operator, X_BOX_X);
329329
xBoxX.whenHeld(new PresetFlywheelController(mShooter, "TLR")
330-
.alongWith(new TurnOnLEDs(mLimelight))
330+
// .alongWith(new TurnOnLEDs(mLimelight))
331331
.alongWith(new XBoxButtonCommand(X_BOX_X))); // tarmac, lower goal, rear shot
332332

333333
xBoxX.whenReleased(new StopShooter(mShooter)
@@ -336,7 +336,7 @@ public void configureButtonBindings() {
336336

337337
JoystickButton xBoxY = new JoystickButton(operator, X_BOX_Y);
338338
xBoxY.whenHeld(new PresetFlywheelController(mShooter, "TUR")
339-
.alongWith(new TurnOnLEDs(mLimelight))
339+
// .alongWith(new TurnOnLEDs(mLimelight))
340340
.alongWith(new XBoxButtonCommand(X_BOX_Y))); // tarmac, upper goal, rear shot
341341

342342
xBoxY.whenReleased(new StopShooter(mShooter)

0 commit comments

Comments
 (0)