Skip to content

Commit

Permalink
Turn down shooting speed of scale autos
Browse files Browse the repository at this point in the history
After watching replays, I realized it was a little spooky.
  • Loading branch information
GrantPerkins committed Apr 16, 2018
1 parent b2c9e72 commit b09250e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public LeftStartLeftScale(double defaultSpeed) {
addSequential(new DriveStraight(1.5, -.5, 40));

//Shoot cube into scale, back up, lower elevator/elevator
addSequential(new ShootCubeOut(2, .5));
addSequential(new ShootCubeOut(2, .4));
addParallel(new ElevateToBottom());
addParallel(new PneumaticLower());
addSequential(new DriveStraight(1, .6, 40));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public LeftStartRightScale(double defaultSpeed) {
addSequential(new DriveStraight(5, -.65, -22.5));

// Shoot the cube into scale, back up
addSequential(new ShootCubeOut(2, .6));
addSequential(new ShootCubeOut(2, .4));
addParallel(new ElevateToBottom());
addParallel(new PneumaticLower());
addSequential(new DriveStraight(3.5, .65, -22.5));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public RightStartLeftScale(double defaultSpeed) {
addSequential(new DriveStraight(5, -.65, 22.5));

// Shoot the cube into scale, back up
addSequential(new ShootCubeOut(2, .6));
addSequential(new ShootCubeOut(2, .4));
addParallel(new ElevateToBottom());
addParallel(new PneumaticLower());
addSequential(new DriveStraight(3, .65, 22.5));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ public RightStartRightScale(double defaultSpeed, int switchPosition) {

//Turn to scale, drive up to it
addSequential(new ChangeHeadingWhileUp(-40, 1));
addSequential(new DriveStraight(1.5, -.6, -40));
addSequential(new DriveStraight(1.5, -.5, -40));

//Shoot cube into scale, back up, lower elevator/elevator
addSequential(new ShootCubeOut(2, .5));
addSequential(new ShootCubeOut(2, .4));
addParallel(new ElevateToBottom());
addParallel(new PneumaticLower());
addSequential(new DriveStraight(1, .6, -40));
Expand Down

0 comments on commit b09250e

Please sign in to comment.