add intake subsystem class
authorMeeta <fasmeeta@gmail.com>
Wed, 18 Jan 2017 03:16:24 +0000 (19:16 -0800)
committerMeeta <fasmeeta@gmail.com>
Wed, 18 Jan 2017 03:16:24 +0000 (19:16 -0800)
src/org/usfirst/frc/team3501/robot/subsystems/Intake.java [new file with mode: 0644]

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 (file)
index 0000000..1c891d4
--- /dev/null
@@ -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
+
+  }
+
+}