We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 31d6030 + 9b6b3eb commit 377d1d1Copy full SHA for 377d1d1
2 files changed
src/main/java/frc/robot/subsystems/dropper/DropperConstants.java
@@ -2,9 +2,12 @@
2
3
public class DropperConstants {
4
5
- public static Constraints kArmConstraints;
+ public static Constraints kDropperConstraints;
6
public static final double UPPER_LIMIT = 1;
7
public static final double LOWER_LIMIT = -1;
8
9
- // add motor id's
+ public static final int LEFT_MOTOR_ID = 0
10
+ public static final int RIGHT_MOTOR_ID = 0
11
+
12
13
}
src/main/java/frc/robot/subsystems/dropper/DropperIO.java
@@ -10,6 +10,7 @@ public class ArmIOInputs {
public double angVelocityRadsPerSec;
+ // Methods to be implemented in IOSim and IOSparkMax
14
public default void updateInputs(ArmIOInputs inputs) {}
15
16
public default double getAngle() {}
0 commit comments