File tree 2 files changed +4
-1
lines changed
src/main/java/frc/robot/subsystems
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ public ArmSubsystem(InputSubsystem inputSubsystem) {
74
74
liftConfig .closedLoop .feedbackSensor (FeedbackSensor .kPrimaryEncoder );
75
75
76
76
SparkMaxConfig followLiftConfig = new SparkMaxConfig ();
77
- followLiftConfig .apply (liftConfig );
77
+ followLiftConfig .follow ( Constants . ArmConstants . LEFT_LIFT_CAN_ID ). apply (liftConfig );
78
78
79
79
80
80
SparkMaxConfig coralConfig = new SparkMaxConfig ();
@@ -83,6 +83,7 @@ public ArmSubsystem(InputSubsystem inputSubsystem) {
83
83
SparkMaxConfig followCoralConfig = new SparkMaxConfig ();
84
84
followCoralConfig .follow (Constants .ArmConstants .LEFT_CORAL_CAN_ID ).apply (coralConfig );
85
85
86
+
86
87
followLiftConfig .follow (Constants .ArmConstants .LEFT_LIFT_CAN_ID , true );
87
88
followCoralConfig .follow (Constants .ArmConstants .LEFT_CORAL_CAN_ID , true );
88
89
Original file line number Diff line number Diff line change @@ -234,6 +234,8 @@ public double getDesiredPosition() {
234
234
public double getArmMovement () {
235
235
if (xboxController != null && xboxController .isConnected () == true ) {
236
236
if (xboxController .getYButton ()) {
237
+ return Constants .ArmConstants .LIFT_SPEED ;
238
+ } else if (xboxController .getAButton ()) {
237
239
return Constants .ArmConstants .LIFT_SPEED * -1 ;
238
240
} else if (xboxController .getAButton ()) {
239
241
return Constants .ArmConstants .LIFT_SPEED ;
You can’t perform that action at this time.
0 commit comments