From: Shaina Chen Date: Fri, 12 Feb 2016 03:47:28 +0000 (-0800) Subject: add javadoc style comment for class X-Git-Url: http://challenge-bot.com/repos/?p=3501%2Fstronghold-2016;a=commitdiff_plain;h=b007b3f6708ec8920498ddf55487d5bf7ee5f11c add javadoc style comment for class --- diff --git a/src/org/usfirst/frc/team3501/robot/commands/SetHandToAngle.java b/src/org/usfirst/frc/team3501/robot/commands/SetHandToAngle.java index d72db43d..f89ac0da 100755 --- a/src/org/usfirst/frc/team3501/robot/commands/SetHandToAngle.java +++ b/src/org/usfirst/frc/team3501/robot/commands/SetHandToAngle.java @@ -4,6 +4,13 @@ import org.usfirst.frc.team3501.robot.Robot; import edu.wpi.first.wpilibj.command.Command; +/*** + * This command moves the defense arm to a input angle position. + * Requires input of a targetPosition and a speed. + * + * @author shaina + * + */ public class SetHandToAngle extends Command { private static final double THRESHOLD = 0.1; private double speed;