Skip to content

Commit

Permalink
merge w/ main and stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
EdzmLeGoat committed Mar 4, 2025
1 parent abdf468 commit 6386fa8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/deploy/pathplanner/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"robotWidth": 0.8255,
"robotLength": 0.8255,
"robotWidth": 1.2,
"robotLength": 1.2,
"holonomicMode": true,
"pathFolders": [],
"autoFolders": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class AutoScorePathfinder(val robot: Robot, private val endPose: Pose2d) {
private var yPIDSpeed = 0.0
private val pidOffsetTime = 0.15

private var thetaController: PIDController = PIDController(10.0, 3.0, 0.1)
private var thetaController: PIDController = PIDController(6.5, 0.8592, 0.0)
private var xController = PIDController(7.0, 2.0, 0.0)
private var yController = PIDController(7.0, 2.0, 0.0)
var distance: Double
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class PoseSubsystem(
private var magDec = 0.0004
private val maxMagPower = 20.0
private var lastDistance = 0.0
private val agreeVal = 0.15
private val agreeVal = 0.3
private val autoDistance = 0.3544921069702
lateinit var autoscoreCurrentCommand: Command

Expand Down

0 comments on commit 6386fa8

Please sign in to comment.