Add constructors to command skeletons
authorshainachen <shaina.sierra@gmail.com>
Thu, 12 Jan 2017 04:42:33 +0000 (20:42 -0800)
committerCindy Zhang <cindyzyx9@gmail.com>
Sat, 14 Jan 2017 22:28:36 +0000 (14:28 -0800)
src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheel.java
src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheelContinuous.java
src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheel.java
src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheelContinuous.java
src/org/usfirst/frc/team3501/robot/commands/shooter/StopFlyWheel.java

index de0045f4470b3e8c0720d45278b889da1f47d871..0ab2e4adf7225b1139f5bcc38c7c8d1d02b34422 100644 (file)
@@ -11,6 +11,9 @@ import edu.wpi.first.wpilibj.command.Command;
  *            in seconds
  */
 public class RunFlyWheel extends Command {
+       public RunFlyWheel() {
+
+       }
 
        // Called just before this Command runs the first time
        @Override
index ef0c2e3a2223777359dbbd1cfc8b6598c3740c2f..b4fd8df96dbdf36cda2bb986d7929e22ab4564aa 100644 (file)
@@ -6,6 +6,9 @@ import edu.wpi.first.wpilibj.command.Command;
  * Runs fly wheel continuously until ________
  */
 public class RunFlyWheelContinuous extends Command {
+       public RunFlyWheelContinuous() {
+
+       }
 
        // Called just before this Command runs the first time
        @Override
index bf884e07e5d5dedf69bd212844693b387b85a7a1..8814b2ce6ae2fb106bd4c6d194d13d519f3f3d74 100644 (file)
@@ -11,6 +11,9 @@ import edu.wpi.first.wpilibj.command.Command;
  *            in seconds
  */
 public class RunIndexWheel extends Command {
+       public RunIndexWheel() {
+
+       }
 
        // Called just before this Command runs the first time
        @Override
index 412b4731d160ed5c947b0597290dea34fa862bc9..cd3b1d4f4fbd1f409e2ed38668442291f3f8c6c5 100644 (file)
@@ -6,6 +6,9 @@ import edu.wpi.first.wpilibj.command.Command;
  * Runs index wheel continuously until ________
  */
 public class RunIndexWheelContinuous extends Command {
+       public RunIndexWheelContinuous() {
+
+       }
 
        // Called just before this Command runs the first time
        @Override
index 68c6cf0ce4a3e1ce17563b5969ee592cdb73f010..633154fc1ef9cafe283d4cdbe850fe88f51cfdcb 100644 (file)
@@ -2,11 +2,13 @@ package org.usfirst.frc.team3501.robot.commands.shooter;
 
 import edu.wpi.first.wpilibj.command.Command;
 
+/**
+ * Stops fly wheel
+ */
 public class StopFlyWheel extends Command {
+       public StopFlyWheel() {
 
-       /**
-        * Stops fly wheel
-        */
+       }
 
        // Called just before this Command runs the first time
        @Override