Skip to content

Commit

Permalink
Add some preliminary comments and clean formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
alexru26 committed Nov 6, 2024
1 parent 41b7d42 commit acd2438
Show file tree
Hide file tree
Showing 2 changed files with 195 additions and 138 deletions.
3 changes: 2 additions & 1 deletion src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,8 @@ private void configureButtonBindings() {
drive,
() -> (-driverController.getLeftY() * (invertX.get()?-1:1)),
() -> (-driverController.getLeftX() * (invertY.get()?-1:1)),
() -> (-driverController.getRightX()) * (invertOmega.get()?-1:1)));
() -> (-driverController.getRightX()) * (invertOmega.get()?-1:1))
);
intake.setDefaultCommand(IntakeCommands.idleCommand(intake));
feeder.setDefaultCommand(FeederCommands.idleFeeder(feeder));
shooter.setDefaultCommand(
Expand Down
Loading

0 comments on commit acd2438

Please sign in to comment.