Skip to content

Commit

Permalink
edit elevator const
Browse files Browse the repository at this point in the history
  • Loading branch information
PatribotsProgramming committed Oct 11, 2024
1 parent 4b8d745 commit dd02cb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/main/java/frc/robot/subsystems/shooter/Pivot.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ public boolean getAtDesiredPassAngle() {
}

public void setPivotLock(boolean lock) {
System.out.println("Setting lock: " + lock);
pivotLock = lock;
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/util/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ public static final class ElevatorConstants {
public static final double STUCK_TIME_SECONDS = 0.25;
public static final double UNSTUCK_OUTTAKE_TIME_SECONDS = 0.3;

public static final double ELEVATOR_TOP_LIMIT = 0.49;
public static final double ELEVATOR_TOP_LIMIT = 0.477;
public static final double ELEVATOR_BOTTOM_LIMIT = 0;

public static final double AMPPER_LOWER_PERCENT_LIMIT = -1;
Expand Down

0 comments on commit dd02cb0

Please sign in to comment.