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

Commit

Permalink
tiny change
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalSkylake committed Mar 5, 2024
1 parent 1d54858 commit 405364e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/main/java/frc/robot/commands/intake/WaitForIntakeUp.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

package frc.robot.commands.intake;

import com.ctre.phoenix6.mechanisms.swerve.SwerveRequest.RobotCentric;

import edu.wpi.first.wpilibj2.command.Command;
import frc.robot.RobotContainer;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/subsystems/Intake.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public double getPosition() {
}

public boolean isIntakeDown() {
return getPosition() < 0.04;
return getPosition() < 0.07;
}

public boolean isIntakeUp() {
Expand Down

0 comments on commit 405364e

Please sign in to comment.