More competition updates, intake speed and joystick scaling
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / Robot.java
index 8616cfa765dd39fe98e3f3eeb42c6f3534c45b13..35bf8a584ac24f3028998e3215d6d6bf788cdc82 100644 (file)
@@ -1,8 +1,6 @@
 package org.usfirst.frc.team3501.robot;
 
 import org.usfirst.frc.team3501.robot.commands.driving.SetHighGear;
-import org.usfirst.frc.team3501.robot.commands.intakearm.MoveIntakeArm;
-import org.usfirst.frc.team3501.robot.commands.shooter.ResetCatapult;
 import org.usfirst.frc.team3501.robot.subsystems.DriveTrain;
 import org.usfirst.frc.team3501.robot.subsystems.IntakeArm;
 import org.usfirst.frc.team3501.robot.subsystems.Shooter;
@@ -37,8 +35,6 @@ public class Robot extends IterativeRobot {
   @Override
   public void teleopInit() {
     Scheduler.getInstance().add(new SetHighGear());
-    Scheduler.getInstance().add(new ResetCatapult());
-    Scheduler.getInstance().add(new MoveIntakeArm(Constants.IntakeArm.EXTEND));
   }
 
   @Override