Skip to content

Commit

Permalink
fixed typo in kicker naming
Browse files Browse the repository at this point in the history
  • Loading branch information
GearBoxFox committed Feb 3, 2024
1 parent b0744d7 commit d7df891
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ public class ShooterIOPrototype implements ShooterIO {
private final CANSparkFlex m_topRightMotor;
private final CANSparkMax m_bottomLeftMotor;
private final CANSparkMax m_bottomRightMotor;
private final CANSparkMax m_kickekMotor;
private final CANSparkMax m_kickerMotor;
private final CANSparkMax m_intakeLeft;
private final CANSparkMax m_intakeRight;
public ShooterIOPrototype() {
m_topLeftMotor = new CANSparkFlex(13, CANSparkLowLevel.MotorType.kBrushless);
m_topRightMotor = new CANSparkFlex(14, CANSparkLowLevel.MotorType.kBrushless);
m_bottomLeftMotor = new CANSparkMax(15, CANSparkLowLevel.MotorType.kBrushless);
m_bottomRightMotor = new CANSparkMax(16, CANSparkLowLevel.MotorType.kBrushless);
m_kickekMotor = new CANSparkMax(17, CANSparkLowLevel.MotorType.kBrushless);
m_kickerMotor = new CANSparkMax(17, CANSparkLowLevel.MotorType.kBrushless);
m_intakeLeft = new CANSparkMax(20, CANSparkLowLevel.MotorType.kBrushless);
m_intakeRight = new CANSparkMax(21, CANSparkLowLevel.MotorType.kBrushless);

Expand Down Expand Up @@ -55,7 +55,7 @@ public void setMotorVoltageBR(double voltage) {

@Override
public void setKickerVoltage(double voltage) {
m_kickekMotor.setVoltage(voltage);
m_kickerMotor.setVoltage(voltage);
}

@Override
Expand Down

0 comments on commit d7df891

Please sign in to comment.