Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

Commit

Permalink
Fixed fr fr!
Browse files Browse the repository at this point in the history
  • Loading branch information
owenflatman committed Oct 25, 2023
1 parent 3e14c4f commit 21f7965
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ public static final class Arm {
public static final int SOLENOID_FORWARD_CHANNEL = 0;
public static final int SOLENOID_REVERSE_CHANNEL = 1;

public static final int ARM_PWM_PORT = 9;
public static final int ARM_PWM_DIO = 9;

/**
* Arm PID constants.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/subsystems/Arm.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Arm extends SubsystemBase {
private final AbsoluteEncoder armEncoder = armMotor1.getAbsoluteEncoder(Type.kDutyCycle);
private final DoubleSolenoid armSolenoid;

public DigitalInput armSense = new DigitalInput(Constants.Arm.ARM_PWM_PORT);
public DigitalInput armSense = new DigitalInput(Constants.Arm.ARM_PWM_DIO);

ProfiledPIDController armPIDController =
new ProfiledPIDController(Constants.Arm.PID.kP, Constants.Arm.PID.kI, Constants.Arm.PID.kD,
Expand Down

0 comments on commit 21f7965

Please sign in to comment.