Skip to content

Commit

Permalink
fix 2ball
Browse files Browse the repository at this point in the history
  • Loading branch information
slightlyskepticalpotat committed Sep 4, 2022
1 parent 7755c8d commit 83dcbdf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/cpp/commands/autonomous/Ball2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Ball2::Ball2(
SetName("Ball2");
AddCommands(
// Remove ball
IntakeMove(intake, -1, 0.3),
IntakeMove(intake, 1, 0.3),
// Taxi out
TankMoveGyro(drivetrain, -1.4, 0.63),
// Break tape
Expand Down
2 changes: 1 addition & 1 deletion src/main/cpp/commands/common/GrabBall.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ GrabBall::GrabBall(
// Move forward while intake in
frc2::ParallelCommandGroup(
ArmMove(arm, -0.1, 1.3),
IntakeMove(intake, 0.8, 1.3),
IntakeMove(intake, -1, 1.3),
TankMoveGyro(drivetrain, 0.5, 0.7))
);

Expand Down
2 changes: 1 addition & 1 deletion src/main/cpp/commands/common/ScoreBall.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ScoreBall::ScoreBall(
ArmMove(arm, 0.1, 5)),
// Dump ball while keeping arm up
frc2::ParallelCommandGroup(
IntakeMove(intake, -1, 0.3),
IntakeMove(intake, 1, 0.3),
ArmMove(arm, 0.1, 0.3)),
// Move back
TankMove(drivetrain, -3, 0.65),
Expand Down

0 comments on commit 83dcbdf

Please sign in to comment.