Skip to content

Commit

Permalink
"Hopeful, yes I am, be hopefully today, take this music and use it, l…
Browse files Browse the repository at this point in the history
…et it take you away!"
  • Loading branch information
kuek64 authored Nov 20, 2024
1 parent 84033b4 commit c1b3c9e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public void buildPaths() {
.setConstantHeadingInterpolation(Math.toRadians(180))
.addPath(new BezierLine(new Point(28, 10, Point.CARTESIAN), new Point(specimenSetPose)))
.setLinearHeadingInterpolation(Math.toRadians(180), specimenSetPose.getHeading())
//.setZeroPowerAccelerationMultiplier(0.5)
.setZeroPowerAccelerationMultiplier(0.5)
.build();

grab1 = follower.pathBuilder()
Expand Down
10 changes: 5 additions & 5 deletions TeamCode/src/main/java/indubitables/opmode/BlueObservation.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ public void pathUpdate() {
break;
case 3: //Waits until follower reaches it's position then begins the Specimen State Machine
if(!auto.follower.isBusy()) {
auto.liftPIDF = false;
auto.lift.manual(-0.4);
setPathState(4);
//auto.liftPIDF = false;
//auto.lift.manual(-0.4);
setPathState(5);
}
break;
case 4:
if(pathTimer.getElapsedTimeSeconds() > 0.25) {
auto.lift.manual(0);
auto.startSpecimen();
//auto.lift.manual(0);
//auto.startSpecimen();
setPathState(5);
}
break;
Expand Down

0 comments on commit c1b3c9e

Please sign in to comment.