]> git.taranathan.com Git - FRC2026.git/commitdiff
continuing fixing stuff
authorEthan Mortensen <ethanmortensen20@gmail.com>
Sat, 7 Feb 2026 18:13:33 +0000 (10:13 -0800)
committerEthan Mortensen <ethanmortensen20@gmail.com>
Sat, 7 Feb 2026 18:13:33 +0000 (10:13 -0800)
my code was in the wrong branch by accident

src/main/java/frc/robot/constants/Climb/ClimbConstants.java [new file with mode: 0644]

diff --git a/src/main/java/frc/robot/constants/Climb/ClimbConstants.java b/src/main/java/frc/robot/constants/Climb/ClimbConstants.java
new file mode 100644 (file)
index 0000000..e14217e
--- /dev/null
@@ -0,0 +1,13 @@
+package frc.robot.constants.Climb;
+
+public class ClimbConstants {
+    // CHANGE LATER
+
+    public final static double CLIMB_GEAR_RATIO = 1 / 1;
+    public final static double MAX_VELOCITY = 0.1;
+    public final static double MAX_ACCELERATION = 1;
+    public final static double MIN_HEIGHT = 0;
+    public final static double MAX_HEIGHT = 1;
+    public final static double RADIUS = 1;
+    public final static double CLIMB_HEIGHT = 1;
+}