Skip to content

Commit

Permalink
Task 7 Completion
Browse files Browse the repository at this point in the history
  • Loading branch information
Saanvi Korem committed Oct 24, 2024
1 parent e4e63f3 commit ec618a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ private void configureButtonBindings() {
//in a RepeatCommand to repeat, and replace the type of moveServoUp and moveServoDown(or whatever they are called) with that type of Command.
//Then, delete the RepeatCommand, because your command should already repeat.

// m_controller.y().whileTrue(new RepeatCommand(null));
// m_controller.a().whileTrue(new RepeatCommand(null));
m_controller.y().whileTrue(ServoCommands.moveArmUp());
m_controller.a().whileTrue(ServoCommands.moveArmDown());
}

/**
Expand Down

0 comments on commit ec618a2

Please sign in to comment.