-
Notifications
You must be signed in to change notification settings - Fork 0
Final constants and updates before Jan 24th Competition #14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Co-Authored-By: Ashwix10 <167014312+Ashwix10@users.noreply.github.com>
Co-Authored-By: Ashwix10 <167014312+Ashwix10@users.noreply.github.com>
Co-Authored-By: Ashwix10 <167014312+Ashwix10@users.noreply.github.com>
Co-Authored-By: Ashwix10 <167014312+Ashwix10@users.noreply.github.com>
…710/Decode into final-constants
Co-Authored-By: Ashwix10 <167014312+Ashwix10@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR contains final hardware tuning and dependency updates in preparation for a January 24th competition. The changes include motor control adjustments, dual-servo configuration, and dependency management updates.
Changes:
- Updated pedropathing library from version 2.0.4 to 2.0.5 and migrated bylazar fullpanels to Sloth-based version
- Added second ramp servo (ramp2) with synchronized control alongside the existing ramp servo
- Tuned PIDF coefficients for launcher motor and adjusted launcher velocities and blocker servo positions
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| build.dependencies.gradle | Updated pedropathing version and removed old dependencies that were migrated to Sloth |
| TeamCode/src/main/java/org/firstinspires/ftc/teamcode/starterbot/Robot.java | Added ramp2 servo with synchronized control and updated launcher PIDF coefficients |
| TeamCode/src/main/java/org/firstinspires/ftc/teamcode/starterbot/Constants.java | Tuned launcher velocities and blocker servo positions for competition |
| TeamCode/build.gradle | Added Sloth dashboard and fullpanels dependencies |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| import com.qualcomm.robotcore.hardware.PIDFCoefficients; | ||
| import com.qualcomm.robotcore.hardware.Servo; | ||
|
|
||
| import org.firstinspires.ftc.robotcore.external.Const; |
Copilot
AI
Jan 24, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This import statement for org.firstinspires.ftc.robotcore.external.Const appears to be unused. The class is never referenced in the file - all references to constants use the Constants class from the teamcode package instead. Consider removing this unused import.
| import org.firstinspires.ftc.robotcore.external.Const; |
No description provided.