Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
fix: last minute changes that fix the robot
Browse files Browse the repository at this point in the history
  • Loading branch information
drive station committed Dec 13, 2024
1 parent 2f2f34a commit 74dd3f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/kotlin/com/frcteam3636/frc2024/Robot.kt
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ object Robot : PatchedLoggedRobot() {

/** Configure which commands each joystick button triggers. */
private fun configureBindings() {
Drivetrain.defaultCommand = Drivetrain.driveWithOneJoystick(joystickLeft)
Drivetrain.defaultCommand = Drivetrain.driveWithJoysticks(joystickLeft, joystickRight)
Indexer.defaultCommand = Indexer.autoRun()

// (The button with the yellow tape on it)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ class ArmIOReal: ArmIO {
private const val PROFILE_VELOCITY = 1.0


val LEFT_ZERO_OFFSET = Radians.of(1.09)
val RIGHT_ZERO_OFFSET = Radians.of(-0.99)
val LEFT_ZERO_OFFSET = Radians.of(1.1)
val RIGHT_ZERO_OFFSET = Radians.of(-2.06)
}

}
Expand Down

0 comments on commit 74dd3f1

Please sign in to comment.