Skip to content

Commit

Permalink
Adjust auto a little bit
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinnie Magro committed Mar 22, 2014
1 parent c16c9f8 commit 4fcc643
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions src/org/team3309/frc2014/commands/OneBallHotFirst.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected void initialize() {
}

protected void execute() {
Drive.getInstance().driveTank(.1, 0);
Drive.getInstance().driveTank(.25, 0);
finished = true;
}

Expand All @@ -60,12 +60,10 @@ protected void interrupted() {

}
});
//addSequential(new DriveForward(1000)); //28500 is like perfect for line to one point
//addSequential(new WaitForHot(WaitForHot.Side.RIGHT));
addSequential(new ExtendIntake());
addSequential(new WaitCommand(1));
addSequential(new ExtendPocketPiston());
addSequential(new WaitCommand(.5));
addSequential(new WaitCommand(1)); //changed from .5 to 1
addSequential(new ShootAndRetract());
}

Expand Down
2 changes: 1 addition & 1 deletion src/org/team3309/frc2014/commands/OneBallHotSecond.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected void initialize() {
}

protected void execute() {
Drive.getInstance().driveTank(.1, 0);
Drive.getInstance().driveTank(.25, 0);
finished = true;
}

Expand Down

0 comments on commit 4fcc643

Please sign in to comment.