From: Meeta Date: Wed, 18 Jan 2017 03:16:24 +0000 (-0800) Subject: add intake subsystem class X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=commitdiff_plain;h=0ceab9a4ab7dec9aa01508a922351456f17679c3 add intake subsystem class --- diff --git a/src/org/usfirst/frc/team3501/robot/subsystems/Intake.java b/src/org/usfirst/frc/team3501/robot/subsystems/Intake.java new file mode 100644 index 0000000..1c891d4 --- /dev/null +++ b/src/org/usfirst/frc/team3501/robot/subsystems/Intake.java @@ -0,0 +1,47 @@ +package org.usfirst.frc.team3501.robot.subsystems; + +import edu.wpi.first.wpilibj.command.Subsystem; + +/*** + * + * + * @author Meeta + * + */ +public class Intake extends Subsystem { + public Intake() { + + } + + /** + * Runs the intake continuously + */ + public void RunContinous() { + + } + + /** + * Starts running the intake for a specific period of time that the user + * inputs. + * + * @param timeToMove + * in seconds + */ + public void RunIntake(double timeToMove) { + + } + + /** + * Stops the intake + */ + public void StopIntake() { + + } + + @Override + protected void initDefaultCommand() { + // TODO Auto-generated method stub + + } + +}