Skip to content

Commit

Permalink
Merge branch 'Arm-intake' of https://github.com/primo4586/RobotCode2024
Browse files Browse the repository at this point in the history
… into Arm-intake
  • Loading branch information
ori-coval committed Jan 17, 2024
2 parents 27491ef + 9bf33b4 commit 967f9e8
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 @@ -78,8 +78,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 967f9e8

Please sign in to comment.