-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Autonomous - Added "1-Note (Podium) P Center Sweep" routine for Revere playoffs - Updated Note #1 waypoint to account for drivetrain odometry drift - No longer "Drive to Yaw" when scoring from subwoofer - No longer stow arm after intaking piece. Instead, go directly to the scoring arm angle. - Subsystems - Drive - Re-calibrated angle absolute offsets - Re-calibrated wheel diameter - Reverted rotate (aka drive to yaw) PID constants - Added pose2d logging - Arm - Increased amp score arm angle from 80 to 89 degrees - Fixed the position/velocity reported by the relative encoder - Explicitly enable brake mode for the arm - Revert to using absolute encoder target angle for setAngle - LED - Changed color of "intake piece" event from orange to hot pink - Assist - No longer auto rotate to amp - No longer turn off subsystems when transitioning into Autonomous
- Loading branch information
1 parent
9574bdd
commit 327846c
Showing
29 changed files
with
246 additions
and
83 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
src/main/deploy/pathplanner/autos/1-Note (Podium) P Center Sweep.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,37 @@ | ||
{ | ||
"version": 1.0, | ||
"startingPose": { | ||
"position": { | ||
"x": 0.75, | ||
"y": 4.45 | ||
}, | ||
"rotation": -60.0 | ||
}, | ||
"command": { | ||
"type": "sequential", | ||
"data": { | ||
"commands": [ | ||
{ | ||
"type": "named", | ||
"data": { | ||
"name": "Score from P (Subwoofer Podium-Side)" | ||
} | ||
}, | ||
{ | ||
"type": "named", | ||
"data": { | ||
"name": "Turn off Shooter and Intake" | ||
} | ||
}, | ||
{ | ||
"type": "path", | ||
"data": { | ||
"pathName": "P to 8 Center Sweep" | ||
} | ||
} | ||
] | ||
} | ||
}, | ||
"folder": null, | ||
"choreoAuto": false | ||
} |
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 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 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 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 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
74 changes: 74 additions & 0 deletions
74
src/main/deploy/pathplanner/paths/P to 8 Center Sweep.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,74 @@ | ||
{ | ||
"version": 1.0, | ||
"waypoints": [ | ||
{ | ||
"anchor": { | ||
"x": 0.75, | ||
"y": 4.45 | ||
}, | ||
"prevControl": null, | ||
"nextControl": { | ||
"x": 0.6810660837086954, | ||
"y": 1.4507920853690814 | ||
}, | ||
"isLocked": false, | ||
"linkedName": "\"P\" Subwoofer (Podium)" | ||
}, | ||
{ | ||
"anchor": { | ||
"x": 10.0, | ||
"y": 2.0 | ||
}, | ||
"prevControl": { | ||
"x": 10.0, | ||
"y": 1.0 | ||
}, | ||
"nextControl": { | ||
"x": 10.0, | ||
"y": 3.0 | ||
}, | ||
"isLocked": false, | ||
"linkedName": "\"1\" Wing Podium Note" | ||
}, | ||
{ | ||
"anchor": { | ||
"x": 10.0, | ||
"y": 7.0 | ||
}, | ||
"prevControl": { | ||
"x": 10.0, | ||
"y": 6.46 | ||
}, | ||
"nextControl": null, | ||
"isLocked": false, | ||
"linkedName": null | ||
} | ||
], | ||
"rotationTargets": [ | ||
{ | ||
"waypointRelativePos": 0.55, | ||
"rotationDegrees": -125.0, | ||
"rotateFast": true | ||
} | ||
], | ||
"constraintZones": [], | ||
"eventMarkers": [], | ||
"globalConstraints": { | ||
"maxVelocity": 4.0, | ||
"maxAcceleration": 4.0, | ||
"maxAngularVelocity": 540.0, | ||
"maxAngularAcceleration": 720.0 | ||
}, | ||
"goalEndState": { | ||
"velocity": 0, | ||
"rotation": -125.0, | ||
"rotateFast": false | ||
}, | ||
"reversed": false, | ||
"folder": null, | ||
"previewStartingState": { | ||
"rotation": -60.92861841213601, | ||
"velocity": 0 | ||
}, | ||
"useDefaultConstraints": false | ||
} |
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 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 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 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 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 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 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 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 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 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 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 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 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 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.