From: shainachen Date: Thu, 12 Jan 2017 04:42:33 +0000 (-0800) Subject: Add constructors to command skeletons X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=commitdiff_plain;h=05a85c826dc9e393184e275264b70caef5b7676a Add constructors to command skeletons --- diff --git a/src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheel.java b/src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheel.java index de0045f..0ab2e4a 100644 --- a/src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheel.java +++ b/src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheel.java @@ -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 diff --git a/src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheelContinuous.java b/src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheelContinuous.java index ef0c2e3..b4fd8df 100644 --- a/src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheelContinuous.java +++ b/src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheelContinuous.java @@ -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 diff --git a/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheel.java b/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheel.java index bf884e0..8814b2c 100644 --- a/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheel.java +++ b/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheel.java @@ -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 diff --git a/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheelContinuous.java b/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheelContinuous.java index 412b473..cd3b1d4 100644 --- a/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheelContinuous.java +++ b/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheelContinuous.java @@ -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 diff --git a/src/org/usfirst/frc/team3501/robot/commands/shooter/StopFlyWheel.java b/src/org/usfirst/frc/team3501/robot/commands/shooter/StopFlyWheel.java index 68c6cf0..633154f 100644 --- a/src/org/usfirst/frc/team3501/robot/commands/shooter/StopFlyWheel.java +++ b/src/org/usfirst/frc/team3501/robot/commands/shooter/StopFlyWheel.java @@ -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