Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Superbro525Alt committed Aug 25, 2024
1 parent 085529a commit 0e9862b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/Robot.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public Robot() {
.withTimeout(2)
.andThen(Commands.parallel(m_shooter.stop(), m_index.stop())),
m_arm.maintain()))));
NamedCommands.registerCommand("Arm", Commands.deferredProxy(() -> m_arm.goToSetpointAuto(Setpoint.kSpeaker).withTimeout(1)));
NamedCommands.registerCommand("Arm", Commands.deferredProxy(() -> m_arm.goToSetpointAuto(Setpoint.kSpeaker).withTimeout(1.2)));
NamedCommands.registerCommand(
"Intake", Commands.deferredProxy(() -> m_superstructure.intake()));
NamedCommands.registerCommand("OTFArm", m_arm.moveToPosition(0.7528).andThen(m_arm.maintain()));
Expand Down
2 changes: 1 addition & 1 deletion src/main/warp-paths-v1.chor

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0e9862b

Please sign in to comment.