Change constants style to separate encoder ports from drivetrain ports
authorKevin Zhang <icestormf1@gmail.com>
Thu, 21 Jan 2016 04:39:42 +0000 (20:39 -0800)
committerKevin Zhang <icestormf1@gmail.com>
Thu, 21 Jan 2016 04:39:42 +0000 (20:39 -0800)
src/org/usfirst/frc/team3501/robot/Constants.java

index aab82bc0c90a2d5cf17b76ee93c6589fb7d17368..4878ffa72a905acdfe9212fa0afddfb0860f797c 100644 (file)
@@ -13,12 +13,13 @@ public class Constants {
   }
 
   public static class DriveTrain {
+    // Drivetrain Motor Related Ports
     public static final int FRONT_LEFT = 0;
     public static final int FRONT_RIGHT = 0;
     public static final int REAR_LEFT = 0;
     public static final int REAR_RIGHT = 0;
-    // TODO: separate different systems with newline and comment saying what a
-    // body does
+
+    // Encoder related ports
     public final static int ENCODER_LEFT_A = 3;
     public final static int ENCODER_LEFT_B = 4;
     public final static int ENCODER_RIGHT_A = 2;