Skip to content

Commit

Permalink
e
Browse files Browse the repository at this point in the history
  • Loading branch information
Primo4586 committed Jan 17, 2024
1 parent 3739c27 commit 9bf33b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/subsystems/IntakeArmSubsystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ public void setSpeed(double speed){
m_IntakeArmMotor.set(speed);
}
// set incoder idk
public void setEncoder (double EncoderValue){
m_IntakeArmMotor.setPosition(EncoderValue);
public void setEncoder (double encoderValue){
m_IntakeArmMotor.setPosition(encoderValue);
}
// get if a switch is press
public boolean getSwitch(){
Expand Down

0 comments on commit 9bf33b4

Please sign in to comment.