Added the three drive tests to branch Init/ExecuteTestCommand
authorTrevor <tr89on@gmail.com>
Sat, 4 Feb 2017 03:11:02 +0000 (19:11 -0800)
committerTrevor <tr89on@gmail.com>
Sat, 4 Feb 2017 03:11:02 +0000 (19:11 -0800)
src/org/usfirst/frc/team3501/robot/commands/driving/EndTestCommand.java [new file with mode: 0644]
src/org/usfirst/frc/team3501/robot/commands/driving/InitTestCommand.java [new file with mode: 0644]

diff --git a/src/org/usfirst/frc/team3501/robot/commands/driving/EndTestCommand.java b/src/org/usfirst/frc/team3501/robot/commands/driving/EndTestCommand.java
new file mode 100644 (file)
index 0000000..f9363ee
--- /dev/null
@@ -0,0 +1,44 @@
+package org.usfirst.frc.team3501.robot.commands.driving;
+
+import org.usfirst.frc.team3501.robot.Robot;
+
+import edu.wpi.first.wpilibj.command.Command;
+
+/**
+ *
+ */
+public class EndTestCommand extends Command {
+
+  public EndTestCommand() {
+    // Use requires() here to declare subsystem dependencies
+    // eg. requires(chassis);
+  }
+
+  // Called just before this Command runs the first time
+  @Override
+  protected void initialize() {
+    Robot.getDriveTrain().setMotorValues(0.35, 0.35);
+  }
+
+  // Called repeatedly when this Command is scheduled to run
+  @Override
+  protected void execute() {
+  }
+
+  // Make this return true when this Command no longer needs to run execute()
+  @Override
+  protected boolean isFinished() {
+    return true;
+  }
+
+  // Called once after isFinished returns true
+  @Override
+  protected void end() {
+  }
+
+  // Called when another command which requires one or more of the same
+  // subsystems is scheduled to run
+  @Override
+  protected void interrupted() {
+  }
+}
diff --git a/src/org/usfirst/frc/team3501/robot/commands/driving/InitTestCommand.java b/src/org/usfirst/frc/team3501/robot/commands/driving/InitTestCommand.java
new file mode 100644 (file)
index 0000000..85b7cb9
--- /dev/null
@@ -0,0 +1,44 @@
+package org.usfirst.frc.team3501.robot.commands.driving;
+
+import org.usfirst.frc.team3501.robot.Robot;
+
+import edu.wpi.first.wpilibj.command.Command;
+
+/**
+ *
+ */
+public class InitTestCommand extends Command {
+
+  public InitTestCommand() {
+    // Use requires() here to declare subsystem dependencies
+    // eg. requires(chassis);
+  }
+
+  // Called just before this Command runs the first time
+  @Override
+  protected void initialize() {
+    Robot.getDriveTrain().setMotorValues(0.35, 0.35);
+  }
+
+  // Called repeatedly when this Command is scheduled to run
+  @Override
+  protected void execute() {
+  }
+
+  // Make this return true when this Command no longer needs to run execute()
+  @Override
+  protected boolean isFinished() {
+    return false;
+  }
+
+  // Called once after isFinished returns true
+  @Override
+  protected void end() {
+  }
+
+  // Called when another command which requires one or more of the same
+  // subsystems is scheduled to run
+  @Override
+  protected void interrupted() {
+  }
+}