Units
Source code is divided by unit:
- Introduction to Java
- Selection and Boolean Logic
- Loops and 1D Arrays
- Methods and Multi-Dimensional Arrays
- Classes, Inheritance, and Polymorphism
- Abstract Classes, Interfaces, and Enumerated Types
- Exception Handling and Git
- FTC Control System, Sensors, and FTC SDK
- Roadrunner
- FTC Computer Vision
- Control Theory
Units 1-7 are Java Coding while Units 8-11 are FTC-Specific Coding.
Website Navigation
All curriculum is under Learn. Student and teacher tips can be found under Students and Teach.
All units under curriculum contain sections with content. The final 2 sections of each unit contain the unit’s practice problems and quiz.
Practice
All unit practice pages contain practice problems (should be doable if you know the content) and challenge problems (require critical thinking and planning).
Each problem is labeled with concepts that it covers and contains the instructions, template code (which is meant to be copied and pasted), and solution code (link to the code on GitHub).
They may also contain example input and/or output. When displaying example output, [Enter ↩]
indicates that the user has entered a value and pressed the Enter or Return key.
File Navigation
All source code can be found under src/com/omegarobotics
.
All compiled class files can be found under out/production/HowToCode
.
Note: Class files may be outdated compared to the source code.
Generated Javadoc files can be found under javadoc
.
Note: Javadoc files may be outdated compared to the source code.
All code for this website can be found under docs
.
Unit Packages
Inside of each unit folder are 3 packages:
challenges
- Challenge programs to solidify skillslessons
- Demonstration programs to teach conceptspractice
- Warm-ups and practice programs
Related code inside of those 3 packages may also be organized into subpackages.