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

Commit

Permalink
mostly working
Browse files Browse the repository at this point in the history
  • Loading branch information
spacey-sooty committed Aug 18, 2024
1 parent 22a1d26 commit ec00b4d
Show file tree
Hide file tree
Showing 10 changed files with 3,395 additions and 74 deletions.
633 changes: 633 additions & 0 deletions src/main/deploy/choreo/TestShootOTF.1.traj

Large diffs are not rendered by default.

633 changes: 633 additions & 0 deletions src/main/deploy/choreo/TestShootOTF.traj

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions src/main/deploy/pathplanner/autos/OTFtest.auto
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"version": 1.0,
"startingPose": {
"position": {
"x": 0.7936393022537231,
"y": 6.636496543884277
},
"rotation": 57.29577951308232
},
"command": {
"type": "sequential",
"data": {
"commands": [
{
"type": "path",
"data": {
"pathName": "TestShootOTF"
}
}
]
}
},
"folder": null,
"choreoAuto": true
}
6 changes: 3 additions & 3 deletions src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ public final class Constants {
public static final double climberD = 0;

public static final int intakePort = 32;
public static final int intakeFrontBeambreak = 6;
public static final int intakeBackBeambreak = 5;
public static final int intakeFrontBeambreak = 5;
public static final int intakeBackBeambreak = 6;
public static final double intakeP = 3.896e-05;
public static final double intakeI = 0;
public static final double intakeD = 0;
public static final double intakeS = 0.27754;
public static final double intakeV = 0.0020349;
public static final double intakeA = 0.00018939;

public static final double armP = 37.5;
public static final double armP = 10;
public static final double armI = 0;
public static final double armD = 0;
public static final double armS = 0;
Expand Down
Loading

0 comments on commit ec00b4d

Please sign in to comment.