-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02c003e
commit 3247b42
Showing
2 changed files
with
12 additions
and
2 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
src/main/java/frc/robot/subsystems/drive/intake/IntakeConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
package frc.robot.subsystems.drive.intake; | ||
|
||
public class IntakeConstants { | ||
public static final int INTAKE_ID = 0; | ||
public static final int PIVOT_ID = 0; | ||
public static final double INTAKE_KP = 0.0; | ||
public static final double INTAKE_KI = 0.0; | ||
public static final double INTAKE_KD = 0.0; | ||
public static final double PIVOT_KP = 0.0; | ||
public static final double PIVOT_KI = 0.0; | ||
public static final double PIVOT_KD = 0.0; | ||
public static final double INTAKE_OFFSET = 0.0; | ||
public static final double PIVOT_OFFSET = 0.0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters