LogoLogo
  • 2025 REV ION FRC Starter Bot
  • REEFSCAPE 2025
    • 2025 Starter Bot Walkthrough
    • 2025 REV ION Starter Bot Build Guide
      • Cut List
  • CRESCENDO 2024
    • 2024 REV ION FRC Starter Bot
    • 2024 REV ION Starter Bot Build Guide
    • MAXSwerve Drivetrain for 2024 Starter Bot
    • West Coast Drivetrain for 2024 Starter Bot
    • Example Code
  • Charged Up 2023
    • Starter Bot - 2023 REV ION FRC
      • 2023 REV ION FRC Starter Bot Build Guide
      • 2023 REV ION FRC West Coast Drivetrain Build Guide
    • Game Breakdown
    • Game Elements
    • Drivetrains
Powered by GitBook
On this page
  • 2024 REV ION FRC Starter Bot Code
  • Using the Starter Bot code without a MAXSwerve Drivetrain

Was this helpful?

Export as PDF
  1. CRESCENDO 2024

Example Code

PreviousWest Coast Drivetrain for 2024 Starter BotNextStarter Bot - 2023 REV ION FRC

Last updated 1 year ago

Was this helpful?

2024 REV ION FRC Starter Bot Code

Below is a link to download the code for a 2024 REV ION FRC Starter Bot on GitHub! This example uses a MAXSwerve Drivetrain and is programmed in Java.

Using the Starter Bot code without a MAXSwerve Drivetrain

If you are only using part of our design on your robot, you can still use this code to help you program! To find the code for each individual mechanism, navigate to:

2024-REV-ION-FRC-Starter-Bot/src/main/java/frc/robot/subsystems

Then, select one of the following subsystem programs to use

  • ArmSubsystem.java- raising and lowering the intake and launcher, also controls the climb

  • IntakeSubsystem.java - intaking notes and feeding them to the launcher

  • LauncherSubsystem.java - stopping and starting the flywheels on the launcher

In addition to referencing the subsystem code, you will need to look at RobotContainer.java for information about button bindings, constant/variable names, and function names. To find RobotContainer.java navigate to:

2024-REV-ION-FRC-Starter-Bot/src/main/java/frc/robot
2024 REV ION Starter Bot Code - GitHub