Skip to content

Commit cb60105

Browse files
committed
We drive and auto iaim
1 parent 2756e19 commit cb60105

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/deploy/swerve/crescendo/controllerproperties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"angleJoystickRadiusDeadband": 0.5,
33
"heading": {
44
"p": 1.0,
5-
"i": 0.0,
5+
"i": 0.0005,
66
"d": 0.0
77
}
88
}

src/main/java/frc/robot/commands/intake/FeedLauncherCommand.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class FeedLauncherCommand : Command() {
2121

2222
override fun isFinished(): Boolean {
2323
// TODO: Make this return true when this Command no longer needs to run execute()
24-
return LauncherSubsystem.state != LauncherSubsystem.State.FIRING
24+
return false
2525
}
2626

2727
override fun end(interrupted: Boolean) {

src/main/java/frc/robot/subsystems/SwerveSubsystem.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ object SwerveSubsystem : SubsystemBase() {
6969
throw RuntimeException("Error creating swerve drive", e)
7070
}
7171

72-
swerveDrive.setHeadingCorrection(false)
72+
swerveDrive.setHeadingCorrection(true)
7373
swerveDrive.modules.forEach {
7474
it.setAntiJitter(false)
7575
}

0 commit comments

Comments
 (0)