Add command skeletons for Shooter
authorshainachen <shaina.sierra@gmail.com>
Thu, 12 Jan 2017 03:59:46 +0000 (19:59 -0800)
committerCindy Zhang <cindyzyx9@gmail.com>
Sat, 14 Jan 2017 22:28:36 +0000 (14:28 -0800)
src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java

index 561448a81a11714fae9bf28e4b35cf0fdb5a8314..934bdb04a2dc5c8f4b2930435211ce1e2cd79939 100644 (file)
@@ -1,5 +1,31 @@
 package org.usfirst.frc.team3501.robot.subsystems;
 
 public class Shooter {
+       public Shooter() {
 
+       }
+
+       public void stopFlywheel() {
+
+       }
+
+       public void runFlywheel(double speed, double seconds) {
+
+       }
+
+       public void stopIndexWheel() {
+
+       }
+
+       public void runIndexWheel(double speed, double seconds) {
+
+       }
+
+       public void runFlywheelContinuous() {
+
+       }
+
+       public void runIndexWheelContinuous() {
+
+       }
 }