Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
AvidhBavkar committed Feb 23, 2018
1 parent 90c0fe0 commit 71c6dc3
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/com/team3925/frc2018/Robot.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.team3925.frc2018;

import com.team3925.frc2018.commands.DriveManual;
import com.team3925.frc2018.commands.RunElevator;
import com.team3925.frc2018.commands.RunElevatorRaw;
import com.team3925.frc2018.subsystems.Elevator;
import com.team3925.utils.MotionProfileCommand;
Expand All @@ -12,18 +11,15 @@
public class Robot extends IterativeRobot {
DriveManual drive;
RunElevatorRaw elevateRaw;
MotionProfileCommand test;

@Override
public void robotInit() {
drive = new DriveManual(OI.getInstance());
elevateRaw = new RunElevatorRaw();
test = new MotionProfileCommand("testAuto");
}

@Override
public void autonomousInit() {
test.start();
}

public void teleopInit() {
Expand Down

0 comments on commit 71c6dc3

Please sign in to comment.