Skip to content

Commit

Permalink
[#3] New Paths
Browse files Browse the repository at this point in the history
  • Loading branch information
MattD8957 committed Oct 12, 2023
1 parent 37c033c commit 9c72c7f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,15 @@ private void configureDefaultCommands() {
}

private void configureAutonomousCommands(){
autoFactory.makeTrajectory("B2[1]-M-C-HIGH", new HashMap<>(),
autoFactory.makeTrajectory("1-Meter-Back", new HashMap<>(),
new PathConstraints(AutonomousConstants.MAX_VELOCITY, AutonomousConstants.MAX_ACCELERATION));
autoFactory.makeTrajectory("1-Meter-Forward", new HashMap<>(),
new PathConstraints(AutonomousConstants.MAX_VELOCITY, AutonomousConstants.MAX_ACCELERATION));
autoFactory.makeTrajectory("1-Meter-Left", new HashMap<>(),
new PathConstraints(AutonomousConstants.MAX_VELOCITY, AutonomousConstants.MAX_ACCELERATION));
autoFactory.makeTrajectory("1-Meter-Right", new HashMap<>(),
new PathConstraints(AutonomousConstants.MAX_VELOCITY, AutonomousConstants.MAX_ACCELERATION));
autoFactory.makeTrajectory("Square", new HashMap<>(),
new PathConstraints(AutonomousConstants.MAX_VELOCITY, AutonomousConstants.MAX_ACCELERATION));

}
Expand Down

0 comments on commit 9c72c7f

Please sign in to comment.