Create a zeroangle constant for intake arm
authorShivani Oghanta <shivani.oghanta@gmail.com>
Sun, 7 Feb 2016 01:27:01 +0000 (17:27 -0800)
committerShivani Oghanta <shivani.oghanta@gmail.com>
Fri, 12 Feb 2016 04:31:31 +0000 (20:31 -0800)
src/org/usfirst/frc/team3501/robot/Constants.java
src/org/usfirst/frc/team3501/robot/commands/MoveIntakeArmToBallIntakeHeight.java [new file with mode: 0644]

index 79efd230ce862dfe0a450c0ba59d2fa5bc480a8d..ae5941b3e21d9892b3865f655d7f29c64b9c8988 100644 (file)
@@ -77,6 +77,7 @@ public class Constants {
                public static final double OUTPUT_SPEED = -0.5;
                public final static double FULL_RANGE = 270.0; // in degrees
                public final static double OFFSET = -135.0; // in degrees
+               public final static double ZERO_ANGLE = 0;
        }
 
        public static class DefenseArm {
diff --git a/src/org/usfirst/frc/team3501/robot/commands/MoveIntakeArmToBallIntakeHeight.java b/src/org/usfirst/frc/team3501/robot/commands/MoveIntakeArmToBallIntakeHeight.java
new file mode 100644 (file)
index 0000000..805bd78
--- /dev/null
@@ -0,0 +1,5 @@
+package org.usfirst.frc.team3501.robot.commands;
+
+public class MoveIntakeArmToBallIntakeHeight {
+
+}