Skip to content

Commit

Permalink
tiny changes
Browse files Browse the repository at this point in the history
  • Loading branch information
eshen7 committed Oct 4, 2023
1 parent e75ac54 commit d1ebf25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/team3647/frc2023/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public RobotContainer() {
extender.setEncoder(ExtenderConstants.kMinimumPositionTicks);
wrist.setEncoder(WristConstants.kInitialDegree);
cubeWrist.setEncoder(CubeWristConstants.kInitialDegree);
runningMode = autoCommands.blueConeCubeCubeBumpSideNoBump;
runningMode = autoCommands.redConeCubeCubeBumpSideNoBump;
LimelightHelpers.setPipelineIndex(LimelightConstant.kLimelightCenterHost, 1);
swerve.setRobotPose(runningMode.getPathplannerPose2d());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ public Command holdForGamePiece(Supplier<GamePiece> piece) {
return Commands.run(
() -> {
if (piece.get() == GamePiece.Cone) {
rollers.setOpenloop(-0.1);
rollers.setOpenloop(-0.05);
} else {
rollers.setOpenloop(0.03);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public SuperstructureState addWristExtend(double degs, double extend) {
public static final SuperstructureState doubleStationCone =
new SuperstructureState(120, 18000, 103, "double station");
public static final SuperstructureState doubleStationConeLying =
new SuperstructureState(139, 3000, 52, "double station lying");
new SuperstructureState(139, 3000, 51, "double station lying");
public static final SuperstructureState doubleStationCube =
new SuperstructureState(120, 16000, 117, "double station");

Expand Down

0 comments on commit d1ebf25

Please sign in to comment.