Skip to content

Commit

Permalink
remove random 'd'
Browse files Browse the repository at this point in the history
  • Loading branch information
FriedLongJohns committed Jan 28, 2024
1 parent ead8ece commit 4438311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/carlmontrobotics/subsystems/Arm.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

public class Arm extends SubsystemBase {
private final CANSparkMax armMotor1 = MotorControllerFactory.createSparkMax(Constants.Arm.MOTOR_PORT1,MotorConfig.NEO);
d //private final CANSparkMax armMotor2 = MotorControllerFactory.createSparkMax(Constants.Arm.MOTOR_PORT2,MotorConfig.NEO);
//private final CANSparkMax armMotor2 = MotorControllerFactory.createSparkMax(Constants.Arm.MOTOR_PORT2,MotorConfig.NEO);
//there is only one arm motor.
private final SimpleMotorFeedforward armFeed = new SimpleMotorFeedforward(Constants.Arm.kS, Constants.Arm.kV);
private final PIDController armPID = new PIDController(kP[ARM], kI[ARM], kD[ARM]);
Expand Down

0 comments on commit 4438311

Please sign in to comment.