From: Rohan Rodrigues Date: Sun, 19 Feb 2017 22:01:46 +0000 (-0800) Subject: Add piston constants in shooter X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=commitdiff_plain;h=510266402afc5a5aa3142570aeee9a02b1473b23 Add piston constants in shooter --- diff --git a/src/org/usfirst/frc/team3501/robot/Constants.java b/src/org/usfirst/frc/team3501/robot/Constants.java index aafb867..73efe2d 100644 --- a/src/org/usfirst/frc/team3501/robot/Constants.java +++ b/src/org/usfirst/frc/team3501/robot/Constants.java @@ -35,6 +35,10 @@ public class Constants { public static final int INDEX_WHEEL = 7; public final static int HALL_EFFECT_PORT = 9; + public static final int MODULE_NUMBER = 10, PISTON_FORWARD = 6, + PISTON_REVERSE = 5; + public static final Value HIGH_GEAR = DoubleSolenoid.Value.kForward; + public static final Value LOW_GEAR = DoubleSolenoid.Value.kReverse; } public static class DriveTrain {