Skip to content
This repository was archived by the owner on Jul 10, 2019. It is now read-only.

Commit

Permalink
Hardcode autonomous adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
Prog694 committed Apr 27, 2012
1 parent 92c988f commit 8e5136a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/edu/stuy/commands/AutonDrive.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public AutonDrive(int direction, double time) {
// Use requires() here to declare subsystem dependencies
requires(drivetrain);
this.direction = direction;
leftSpeed = 0.6;
leftSpeed = 0.7;
rightSpeed = 0.6;
timeoutTime = time;
}
Expand Down
2 changes: 1 addition & 1 deletion src/edu/stuy/commands/Autonomous.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class Autonomous extends CommandGroup {
// drive train speed is based on free speed; friction will make it slower

// distance is ~68" or ~5.7', rate is 10 ft/s. Time is 1.2s, Your Mileage May Vary
public static final double t_closeKeyToFender = 3.9;
public static final double t_closeKeyToFender = 2.25;

// distance is ~50" or ~4', rate is ~10 ft/s. Time is 0.4s, Your Mileage May Vary
//public static final double t_farKeyToBridge = 0.75;
Expand Down

0 comments on commit 8e5136a

Please sign in to comment.