-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update SwerveWithPathPlanner for 2025
- Loading branch information
1 parent
c9b7a0f
commit 173b9c9
Showing
12 changed files
with
964 additions
and
294 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Files placed in this directory will be deployed to the RoboRIO into the | ||
'deploy' directory in the home folder. Use the 'Filesystem.getDeployDirectory' wpilib function | ||
to get a proper path relative to the deploy directory. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
java/SwerveWithPathPlanner/src/main/deploy/pathplanner/navgrid.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
java/SwerveWithPathPlanner/src/main/deploy/pathplanner/settings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"robotWidth": 0.9, | ||
"robotLength": 0.9, | ||
"holonomicMode": true, | ||
"pathFolders": [], | ||
"autoFolders": [], | ||
"defaultMaxVel": 3.0, | ||
"defaultMaxAccel": 3.0, | ||
"defaultMaxAngVel": 540.0, | ||
"defaultMaxAngAccel": 720.0, | ||
"robotMass": 75.0, | ||
"robotMOI": 6.883, | ||
"robotWheelbase": 0.5588, | ||
"robotTrackwidth": 0.5588, | ||
"driveWheelRadius": 0.05504, | ||
"driveGearing": 7.363636, | ||
"maxDriveSpeed": 4.7, | ||
"driveMotorType": "krakenX60FOC", | ||
"driveCurrentLimit": 120.0, | ||
"wheelCOF": 1.7 | ||
} |
Oops, something went wrong.