Skip to content

Commit

Permalink
Fix asymmetric brake
Browse files Browse the repository at this point in the history
  • Loading branch information
rcahoon committed Jan 8, 2024
1 parent 2bd604f commit 9ccfa4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/team766/robot/mechanisms/Shoulder.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public Shoulder() {
}

halLeftMotor.setNeutralMode(NeutralMode.Brake);
halRightMotor.setNeutralMode(NeutralMode.Coast);
halRightMotor.setNeutralMode(NeutralMode.Brake);

leftMotor = (CANSparkMax) halLeftMotor;
rightMotor = (CANSparkMax) halRightMotor;
Expand Down

0 comments on commit 9ccfa4c

Please sign in to comment.