Skip to content

Commit 9a4b570

Browse files
committed
2 parents f87244f + 99e2311 commit 9a4b570

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/main/java/frc/robot/subsystems/ArmSubsystem.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public ArmSubsystem(InputSubsystem inputSubsystem) {
7474
liftConfig.closedLoop.feedbackSensor(FeedbackSensor.kPrimaryEncoder);
7575

7676
SparkMaxConfig followLiftConfig = new SparkMaxConfig();
77-
followLiftConfig.apply(liftConfig);
77+
followLiftConfig.follow(Constants.ArmConstants.LEFT_LIFT_CAN_ID).apply(liftConfig);
7878

7979

8080
SparkMaxConfig coralConfig = new SparkMaxConfig();
@@ -83,6 +83,7 @@ public ArmSubsystem(InputSubsystem inputSubsystem) {
8383
SparkMaxConfig followCoralConfig = new SparkMaxConfig();
8484
followCoralConfig.follow(Constants.ArmConstants.LEFT_CORAL_CAN_ID).apply(coralConfig);
8585

86+
8687
followLiftConfig.follow(Constants.ArmConstants.LEFT_LIFT_CAN_ID, true);
8788
followCoralConfig.follow(Constants.ArmConstants.LEFT_CORAL_CAN_ID, true);
8889

src/main/java/frc/robot/subsystems/InputSubsystem.java

+2
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,8 @@ public double getDesiredPosition() {
234234
public double getArmMovement() {
235235
if(xboxController != null && xboxController.isConnected() == true) {
236236
if (xboxController.getYButton()) {
237+
return Constants.ArmConstants.LIFT_SPEED;
238+
} else if (xboxController.getAButton()) {
237239
return Constants.ArmConstants.LIFT_SPEED * -1;
238240
} else if (xboxController.getAButton()) {
239241
return Constants.ArmConstants.LIFT_SPEED;

0 commit comments

Comments
 (0)