Skip to content

Commit

Permalink
Removed a print statement
Browse files Browse the repository at this point in the history
Added a foot to the full ramp auto for consistency
  • Loading branch information
2199robolions committed Mar 23, 2023
1 parent 7eda131 commit 8186a35
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/java/frc/robot/Auto.java
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,8 @@ public int rampAutoFull(boolean isRed, double numObjects, long delaySeconds) {
status = drive.leaveRamp(false);
break;
case 7:
// Storing a pose 1.25 meter beyond ramp and straightened so we ensure we leave community
rampAutoExitCommunity[0] = new Pose2d(currPose.getX() + 1.25, currPose.getY(), currPose.getRotation());
// Storing a pose 1.55 meter beyond ramp and straightened so we ensure we leave community
rampAutoExitCommunity[0] = new Pose2d(currPose.getX() + 1.55, currPose.getY(), currPose.getRotation());
status = Robot.DONE;
break;
case 8:
Expand Down Expand Up @@ -770,7 +770,6 @@ public int armToTopCone() {
break;
case 4:
// Finished routine
System.out.println("Holding arm (why am I oscillating)");
arm.hold(1);
arm.hold(2);
arm.hold(3);
Expand Down

0 comments on commit 8186a35

Please sign in to comment.