-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new auto paths and update settings for path planning and robot di…
…mensions functional three piece
- Loading branch information
1 parent
38e9ff7
commit 0d81b8c
Showing
39 changed files
with
1,071 additions
and
693 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
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
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
12 changes: 12 additions & 0 deletions
12
FlexAdvKitBeta/src/main/deploy/pathplanner/autos/3Piece.auto
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,12 @@ | ||
{ | ||
"version": "2025.0", | ||
"command": { | ||
"type": "sequential", | ||
"data": { | ||
"commands": [] | ||
} | ||
}, | ||
"resetOdom": true, | ||
"folder": null, | ||
"choreoAuto": true | ||
} |
19 changes: 19 additions & 0 deletions
19
FlexAdvKitBeta/src/main/deploy/pathplanner/autos/Forward.auto
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,19 @@ | ||
{ | ||
"version": "2025.0", | ||
"command": { | ||
"type": "sequential", | ||
"data": { | ||
"commands": [ | ||
{ | ||
"type": "path", | ||
"data": { | ||
"pathName": "Forward" | ||
} | ||
} | ||
] | ||
} | ||
}, | ||
"resetOdom": true, | ||
"folder": null, | ||
"choreoAuto": true | ||
} |
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
54 changes: 54 additions & 0 deletions
54
FlexAdvKitBeta/src/main/deploy/pathplanner/paths/ForwardAuto.path
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,54 @@ | ||
{ | ||
"version": "2025.0", | ||
"waypoints": [ | ||
{ | ||
"anchor": { | ||
"x": 1.0, | ||
"y": 7.0 | ||
}, | ||
"prevControl": null, | ||
"nextControl": { | ||
"x": 1.772678179111184, | ||
"y": 7.011088339115795 | ||
}, | ||
"isLocked": false, | ||
"linkedName": null | ||
}, | ||
{ | ||
"anchor": { | ||
"x": 3.0, | ||
"y": 7.0 | ||
}, | ||
"prevControl": { | ||
"x": 2.372716908050121, | ||
"y": 7.008368243449518 | ||
}, | ||
"nextControl": null, | ||
"isLocked": false, | ||
"linkedName": null | ||
} | ||
], | ||
"rotationTargets": [], | ||
"constraintZones": [], | ||
"pointTowardsZones": [], | ||
"eventMarkers": [], | ||
"globalConstraints": { | ||
"maxVelocity": 2.0, | ||
"maxAcceleration": 2.0, | ||
"maxAngularVelocity": 540.0, | ||
"maxAngularAcceleration": 720.0, | ||
"nominalVoltage": 12.0, | ||
"unlimited": false | ||
}, | ||
"goalEndState": { | ||
"velocity": 0, | ||
"rotation": 0.0 | ||
}, | ||
"reversed": false, | ||
"folder": null, | ||
"idealStartingState": { | ||
"velocity": 0, | ||
"rotation": 0.0 | ||
}, | ||
"useDefaultConstraints": true | ||
} |
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
Oops, something went wrong.