Finish command group for shooter
authorniyatisriram <niyatisriram@gmail.com>
Wed, 17 Feb 2016 19:36:02 +0000 (11:36 -0800)
committerKevin Zhang <icestormf1@gmail.com>
Wed, 17 Feb 2016 20:33:40 +0000 (12:33 -0800)
src/org/usfirst/frc/team3501/robot/commands/shooter/Shoot.java

index e136c739ae78e74b1da7503258ffa29828fae850..95270bd7dbe847b08a1a391989318b8074b52436 100755 (executable)
@@ -12,6 +12,8 @@ public class Shoot extends CommandGroup {
     addSequential(new WaitCommand(3.0));
     addSequential(new runShooter());
     addSequential(new WaitCommand(3.0));
-    addSequential(new Punch());
+    addSequential(new ExtendPunch());
+    addSequential(new WaitCommand(5.0));
+    addSequential(new RetractPunch());
   }
 }