Fix diverging conflicts, not sure how this happened but it did
authorKevin Zhang <icestormf1@gmail.com>
Sat, 23 Jan 2016 03:35:09 +0000 (19:35 -0800)
committerKevin Zhang <icestormf1@gmail.com>
Sat, 23 Jan 2016 03:35:09 +0000 (19:35 -0800)
src/org/usfirst/frc/team3501/robot/Constants.java
src/org/usfirst/frc/team3501/robot/subsystems/DriveTrain.java

index ed762f0b66b6ce26859db710f8297519083c0367..4878ffa72a905acdfe9212fa0afddfb0860f797c 100644 (file)
@@ -13,13 +13,13 @@ public class Constants {
   }
 
   public static class DriveTrain {
-    // Drivetrain specific ports
+    // 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;
 
-    // Encoder Specific Ports
+    // 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;
index 4a6c6890d6d031683e2b37d4df4f4a19f5a7a96c..2bb3c7a65422789fdacec52f957313b752a510c1 100644 (file)
@@ -8,11 +8,11 @@ import edu.wpi.first.wpilibj.Encoder;
 import edu.wpi.first.wpilibj.command.Subsystem;
 
 public class DriveTrain extends Subsystem {
-  // Drivetrain Related Objects
-  private CANTalon frontLeft, frontRight, rearLeft, rearRight;
+  // Drivetrain related objects
   private Encoder leftEncoder, rightEncoder;
+  private CANTalon frontLeft, frontRight, rearLeft, rearRight;
 
-  // Drivetrain Specific Constants that relate to the Inches per Pulse value of
+  // Drivetrain specific constants that relate to the inches per pulse value for
   // the encoders
   private final static double WHEEL_DIAMETER = 6.0; // in inches
   private final static double PULSES_PER_ROTATION = 256; // in pulses
@@ -75,8 +75,8 @@ public class DriveTrain extends Subsystem {
   }
 
   public void setMotorSpeeds(double leftSpeed, double rightSpeed) {
-    // Right motors receive negative values because they turn in the opposite
-    // direction
+    // speed passed to right motor is negative because right motor rotates in
+    // opposite direction
     this.frontLeft.set(leftSpeed);
     this.frontRight.set(-rightSpeed);
     this.rearLeft.set(leftSpeed);