Skip to content

Commit

Permalink
increase intake speed for pickup
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonbchen committed Apr 3, 2024
1 parent 8656652 commit 2a7925f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/main/deploy/pathplanner/paths/Amp midline note path.path
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"waypoints": [
{
"anchor": {
"x": 3.0,
"x": 3.05,
"y": 6.991369417831561
},
"prevControl": null,
"nextControl": {
"x": 4.299902856581748,
"x": 4.349902856581748,
"y": 7.366116187296568
},
"isLocked": false,
Expand Down
4 changes: 2 additions & 2 deletions src/main/deploy/pathplanner/paths/Amp note 2.path
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
},
{
"anchor": {
"x": 3.0,
"x": 3.05,
"y": 6.991369417831561
},
"prevControl": {
"x": 2.027365849063134,
"x": 2.077365849063134,
"y": 6.991369417831561
},
"nextControl": null,
Expand Down
4 changes: 2 additions & 2 deletions src/main/deploy/pathplanner/paths/Amp return path.path
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
},
{
"anchor": {
"x": 3.0,
"x": 3.05,
"y": 6.991369417831561
},
"prevControl": {
"x": 5.424143164976773,
"x": 5.4741431649767724,
"y": 6.90939356201109
},
"nextControl": null,
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/commands/PickupPiece.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public PickupPiece() {
addCommands(
new ParallelCommandGroup(
new SetFeederVelocity(700.0),
new SetIntakeVelocity(3_500.0),
new SetIntakeVelocity(4_000.0),
new SetShoulderPosition(Shoulder.MIN_ANGLE_DEGREES, true),
new SetElevatorPosition(0.0, false, true)
),
Expand Down

0 comments on commit 2a7925f

Please sign in to comment.