From 0ceab9a4ab7dec9aa01508a922351456f17679c3 Mon Sep 17 00:00:00 2001 From: Meeta Date: Tue, 17 Jan 2017 19:16:24 -0800 Subject: [PATCH] add intake subsystem class --- .../frc/team3501/robot/subsystems/Intake.java | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 src/org/usfirst/frc/team3501/robot/subsystems/Intake.java 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 + + } + +} -- 2.30.2