]> git.taranathan.com Git - FRC2026.git/commitdiff
Update IntakeConstants.java
authormaxwtan <100314265+MaxwellTTan20@users.noreply.github.com>
Fri, 20 Feb 2026 21:14:41 +0000 (13:14 -0800)
committermaxwtan <100314265+MaxwellTTan20@users.noreply.github.com>
Fri, 20 Feb 2026 21:14:41 +0000 (13:14 -0800)
src/main/java/frc/robot/constants/IntakeConstants.java

index c69c76c46857144c1c957d12cf9e56e71c8cdc1d..c472bda9704dc76405659b1d65dd2c50d631c0de 100644 (file)
@@ -4,13 +4,11 @@ import edu.wpi.first.math.util.Units;
 
 public class IntakeConstants {
     /** Intake roller motor speed in range [-1, 1] */
-    public static final double SPEED = 0.8;
+    public static final double SPEED = 1.0;
     /** 12 tooth pinion driving 36 tooth driven gear */
     public static final double GEAR_RATIO = 36.0/12.0;
     /** radius (inches) of the rack gear which is a 10 tooth pinion at 10 DP */
     public static final double RADIUS_RACK_PINION = 0.5;
-    /** roller current limits */
-    public static final double ROLLER_CURRENT_LIMITS = 40.0;
     /**right and left motor current limits */
     public static final double EXTENDER_CURRENT_LIMITS = 40.0;
 
@@ -20,9 +18,13 @@ public class IntakeConstants {
     public static final double DRUM_RADIUS_METERS = Units.inchesToMeters(1.0);
 
 
-
     /** max extension in inches */
-    public static final double MAX_EXTENSION = 10.0; // 14.856; 
+    public static final double MAX_EXTENSION = 10.0; // inches
+
+    public static final double INTERMEDIATE_EXTENSION = 5.0; //inches
+
+    public static final double STOW_EXTENSION = 0.2; // inches
+
     /** starting point in inches */
     public static final double STARTING_POINT = 0;
     /** rack pitch in teeth per inch of diameter (Diametral Pitch) DP = N teeth / Diameter in inches */