Stage 0: Arrays, Interfaces, Generics, and Lists - #2
Open
zachwaffle4 wants to merge 7 commits into
Open
Conversation
zachwaffle4
force-pushed
the
stage0/interfaces-data-structures
branch
from
August 11, 2026 18:01
ff6f4ce to
997d1b7
Compare
zachwaffle4
force-pushed
the
stage0/interfaces-data-structures
branch
from
August 11, 2026 18:09
997d1b7 to
f8d173f
Compare
## Description Cirriculum for evreything needed to program the kitbot drivetrain. Makes progress on frcsoftware#13. ## Meta Merge checklist: - [x] Pull Request title is [short, imperative summary](https://cbea.ms/git-commit/) of proposed changes - [x] The description documents the _what_ and _why_, including events that led to this PR - [x] Pull Request has been [linted and formatted](https://frcsoftware.org/contribution/styleguide/#linting-and-formatting) and follows the [styleguide](https://frcsoftware.org/contribution/styleguide)
…re#184) ## Description Stage 1B's first task told the user to paste in a bunch of unexplained code. This was not only not helpful, but Stage 1A explains what everything there does and is for. This PR rewrites that section to be in line with how we do the other tasks. Closes frcsoftware#166. Blocked by frcsoftware#153. ## Meta Merge checklist: - [x] Pull Request title is [short, imperative summary](https://cbea.ms/git-commit/) of proposed changes - [x] The description documents the _what_ and _why_, including events that led to this PR - [x] Pull Request has been [linted and formatted](https://frcsoftware.org/contribution/styleguide/#linting-and-formatting) and follows the [styleguide](https://frcsoftware.org/contribution/styleguide) --------- Co-authored-by: Adriana <16786568+Adrianamm@users.noreply.github.com>
## Description A current problem with the stage 1A/1B exercise is the lack of interactivity with the `IntakeLauncher` and `Feeder` mechanisms. This should solve that by visualizing balls being intaken, outtaken and shot in the AdvantageScope 3d field. ## Meta Merge checklist: - [X] Pull Request title is [short, imperative summary](https://cbea.ms/git-commit/) of proposed changes - [X] The description documents the _what_ and _why_, including events that led to this PR - [X] Pull Request has been [linted and formatted](https://frcsoftware.org/contribution/styleguide/#linting-and-formatting) and follows the [styleguide](https://frcsoftware.org/contribution/styleguide) ---------
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Stacked on frcsoftware#134.
Adds two new Stage 0 lessons following "Classes, Fields, and Methods":
arrays.mdx) — arrays, indexing, for-each loops, using the existingPointclass for a fixed autonomous waypoint path.interfaces-lists.mdx) — aDistanceSensorinterface, a small generic method, imports/packages, and a growableRobotHistoryTrackerbuilt onList<Point>.Both lessons build on the shared
examples/stage0/snippetsGradle project (frcsoftware#187) for cross-file code reuse.