update the FTC driver station app#67
update the FTC driver station app#67PcPup wants to merge 2 commits intoRobotic-Conspiracy:master-for-editingfrom
Conversation
…lease-candidate FtcRobotController v11.1
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Comment |
There was a problem hiding this comment.
Pull request overview
This pull request updates the FTC Robot Controller SDK from version 11.0.0 to 11.1.0, released on December 31, 2025. The update includes library dependency upgrades, bug fixes for package paths, enhancements to gamepad functionality, and code quality improvements to sample OpModes.
Changes:
- Updated all FTC library dependencies from 11.0.0 to 11.1.0 (8 libraries total)
- Fixed incorrect package paths for externalhardware sample classes (issue FIRST-Tech-Challenge#1863)
- Added gamepad trigger edge detection examples to demonstrate new boolean trigger access functionality
- Refactored AprilTag sample OpModes to remove redundant conditional checks
- Updated app version metadata to reflect 11.1 release
Reviewed changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| build.dependencies.gradle | Updates all 8 FTC library dependencies from version 11.0.0 to 11.1.0 |
| README.md | Adds version 11.1 release notes documenting new features and bug fixes |
| RobotHardware.java | Fixes package declaration to match file location in externalhardware subdirectory |
| ConceptExternalHardwareClass.java | Fixes package declaration to match file location in externalhardware subdirectory |
| ConceptGamepadEdgeDetection.java | Adds trigger detection examples demonstrating new boolean trigger access with edge detection |
| ConceptAprilTagSwitchableCameras.java | Removes redundant opModeIsActive() check, simplifies control flow |
| ConceptAprilTagEasy.java | Removes redundant opModeIsActive() check, simplifies control flow |
| ConceptAprilTag.java | Removes redundant opModeIsActive() check, simplifies control flow |
| AndroidManifest.xml | Updates version code from 60 to 61 and version name from 11.0 to 11.1 |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| * Adds webcam calibrations for goBILDA's USB camera. | ||
|
|
||
| ### Bug Fixes | ||
| * Fixes issue [1654](https://github.com/FIRST-Tech-Challenge/FtcRobotController/issues/1654) in GoBildaPinpointDriver that caused error if resolution was set in other than MM |
There was a problem hiding this comment.
Grammatical issue in the bug fix description. The phrase "caused error if resolution was set in other than MM" is unclear. Consider rephrasing to "caused error if resolution was set to a unit other than MM" or "caused error if resolution was set in units other than MM" for clarity.
| * Fixes issue [1654](https://github.com/FIRST-Tech-Challenge/FtcRobotController/issues/1654) in GoBildaPinpointDriver that caused error if resolution was set in other than MM | |
| * Fixes issue [1654](https://github.com/FIRST-Tech-Challenge/FtcRobotController/issues/1654) in GoBildaPinpointDriver that caused an error if resolution was set to a unit other than MM |
What did you change?
Have you..