beginnings of shooter subsystem
This commit is contained in:
26
src/main/java/frc/robot/constants/ShooterConstants.java
Normal file
26
src/main/java/frc/robot/constants/ShooterConstants.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package frc.robot.constants;
|
||||
|
||||
public class ShooterConstants {
|
||||
|
||||
public static final int kTopShooterID = 11;
|
||||
public static final int kBottomShooterID = 12;
|
||||
public static final int kShooterPivotID = 13;
|
||||
|
||||
public static final double kShooterP = 0.0;
|
||||
public static final double kShooterI = 0.0;
|
||||
public static final double kShooterD = 0.0;
|
||||
|
||||
public static final double kSShooterFF = 0.0;
|
||||
public static final double kVShooterFF = 0.0;
|
||||
|
||||
public static final double kShooterPivotP = 0.0;
|
||||
public static final double kShooterPivotI = 0.0;
|
||||
public static final double kShooterPivotD = 0.0;
|
||||
|
||||
public static final double kSShooterPivotFF = 0.0;
|
||||
public static final double kGShooterPivotFF = 0.0;
|
||||
public static final double kVShooterPivotFF = 0.0;
|
||||
|
||||
public static final double kMaxPivotSpeed = 0.0;
|
||||
public static final double kMaxPivotAcceleration = 0.0;
|
||||
}
|
||||
Reference in New Issue
Block a user