Skip to content

Commit

Permalink
Task 4 Completion
Browse files Browse the repository at this point in the history
  • Loading branch information
Saanvi Korem committed Oct 24, 2024
1 parent 7b271f7 commit e684a32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ public RobotContainer() {
//HINT: In tank drive, the left wheel is controlled by the y axis of the left joystick and the y axis of the right joystick.
m_xrpDrivetrain.setDefaultCommand(
DriveCommands.tankDriveCommand(
() -> m_controller.getLeftY(),
() -> m_controller.getRightY()
() -> m_controller.getLeftY()*-1,
() -> m_controller.getRightY()*-1
)
)
}
Expand Down

0 comments on commit e684a32

Please sign in to comment.