From: Harel Dor Date: Mon, 22 Feb 2016 03:59:05 +0000 (-0800) Subject: First test of motors X-Git-Url: http://challenge-bot.com/repos/?p=3501%2Fstronghold-2016;a=commitdiff_plain;h=80112245c5f6e8f37139f4f3eaec33835d6240ef First test of motors --- diff --git a/src/org/usfirst/frc/team3501/robot/Robot.java b/src/org/usfirst/frc/team3501/robot/Robot.java index 19fa056a..154796c5 100644 --- a/src/org/usfirst/frc/team3501/robot/Robot.java +++ b/src/org/usfirst/frc/team3501/robot/Robot.java @@ -1,7 +1,6 @@ package org.usfirst.frc.team3501.robot; import org.usfirst.frc.team3501.robot.Constants.Defense; -import org.usfirst.frc.team3501.robot.commands.driving.JoystickDrive; import org.usfirst.frc.team3501.robot.subsystems.DefenseArm; import org.usfirst.frc.team3501.robot.subsystems.DriveTrain; import org.usfirst.frc.team3501.robot.subsystems.IntakeArm; diff --git a/src/org/usfirst/frc/team3501/robot/subsystems/DriveTrain.java b/src/org/usfirst/frc/team3501/robot/subsystems/DriveTrain.java index a7fa8eea..ac239361 100644 --- a/src/org/usfirst/frc/team3501/robot/subsystems/DriveTrain.java +++ b/src/org/usfirst/frc/team3501/robot/subsystems/DriveTrain.java @@ -250,7 +250,7 @@ public class DriveTrain extends PIDSubsystem { * because RobotDrive tankdrive method drives inverted */ public void drive(double left, double right) { - robotDrive.tankDrive(-left, -right); +// robotDrive.tankDrive(-left, -right); // dunno why but inverted drive (- values is forward) if (!Constants.DriveTrain.inverted) robotDrive.tankDrive(-left, -right);