FTC Competition Code – 2024–2025 Season

This repository contains the full competition code for FTC team 16322 Silver Storm for the 2024–2025 season. Developed using the FIRST FTC SDK, the code employs a modular, command-based architecture to manage and control multiple subsystems including drivetrain, arm, linear slides, odometry, and computer vision. Advanced PID control, custom command scheduling, and subsystem integration ensure precise autonomous routines and responsive teleop control, giving Silver Storm a competitive edge on the field.

FTC Team 16322 Silver Storm Competition Code Screenshot
Role: Lead Developer 2024–2025 Season

Key Code Snippet

The snippet below illustrates the core update loop of the main OpMode, where all subsystems are periodically updated and the custom command scheduler executes the next set of commands.


@Override
public void loop() {
    // Update all subsystems (drivetrain, arm, vision, etc.)
    robotHardware.periodic();
    
    // Execute scheduled commands via the command scheduler
    CommandScheduler.getInstance().execute();
}
      

Additional Information

The codebase for Silver Storm is built with flexibility and performance in mind. Key features include: