After selecting a motor type and a lesson in FRC Academy, the app asks you to pick a lesson mode before the editor opens. This choice determines how much guidance you’ll receive while coding. Guided Mode walks you through the solution one step at a time with inline code snippets. Unguided Mode drops you into a skeleton file and lets you write the solution from scratch. Both modes use the same code editor, the same Verify Code checker, and the same View Solution reference — only the amount of hand-holding differs.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Holden9607/FRC-Academy/llms.txt
Use this file to discover all available pages before exploring further.
Guided Mode
When you select Guided Lesson, FRC Academy loads the skeleton file into the editor and immediately opens a floating popup in the bottom-right corner of the workspace. This popup is your step-by-step guide through the lesson. How the popup works:- The header shows your current progress as “Guided Step X / Y” (for example,
1 / 4for the Controllers lesson). - Each step displays a plain-language instruction explaining what to type and why, followed by a code block showing the exact line or lines to add.
- Clicking Next Step advances to the next instruction. On the final step, the button label changes to Finish Guide.
- You can close the popup at any time by clicking the × button in the top-right corner of the popup — it won’t lose your place or reset the code.
| Step | Instruction | Code shown |
|---|---|---|
| 1 / 4 | Import the CommandXboxController class from WPILib | import edu.wpi.first.wpilibj2.command.CommandXboxController; |
| 2 / 4 | Declare a private final CommandXboxController named driverController on port 0 | private final CommandXboxController driverController = new CommandXboxController(0); |
| 3 / 4 | Declare another CommandXboxController named operatorController on port 1 | private final CommandXboxController operatorController = new CommandXboxController(1); |
| 4 / 4 | Click “Verify Code” when finished! | (no code snippet — just the final check) |
Unguided Mode
When you select Unguided Lesson, FRC Academy loads the skeleton file into the editor with no popup and no hints. The skeleton includes the correct imports and class/method structure with// TODO comments marking every spot where you need to write code — but it reveals nothing about what to type.
What you get (Controllers lesson):
Shared Features (Both Modes)
Regardless of which mode you choose, all four of the following tools are always available in the editor:Verify Code
Opens the Code Review modal with a line-by-line diagnostic. Each line in your code is highlighted green (correct) or red (error/missing), and a legend on the right explains the color coding. If every line matches the reference solution, a “Code is Correct!” success banner appears.
View Solution
Opens the Code Solution modal showing the complete reference solution. Lines you already have correct are highlighted green; lines you’re missing or have wrong are highlighted red. Use this to see exactly what you need to add without closing the modal and manually correcting your editor.
Reset Code
Restores the editor to the original skeleton for the current lesson, discarding any changes you’ve made. In Guided Mode, this also re-opens the guided popup from Step 1. Use this if you’ve accidentally broken the class structure and want a clean start.
API Libraries
Opens the built-in API Reference browser, a tabbed panel covering all four vendor namespaces used in FRC Academy lessons: Core WPILib, REV Robotics, CTRE Phoenix 6, and Math/Utilities. Browse class names, constructor signatures, and descriptions without leaving the app.
Code Review Diagnostics
When you click Verify Code or View Solution, FRC Academy compares your code to the reference solution line by line (trimming whitespace before comparing). The result is displayed in the Code Review modal using three highlight colors:| Color | Symbol | Meaning |
|---|---|---|
| Green | ✓ | The line is correct — it matches the reference solution |
| Red | ✕ | The line has errors, wrong content, or is missing entirely |
| Blue / italic | / | The line is a comment |
Code Review uses partial credit — it evaluates every line independently. A single typo on one declaration won’t mark the entire file as wrong. You can see exactly which lines are correct and which need fixing, making it easy to zero in on the one problem without rewriting everything.