Legend:
Topic
-
Description
- Material - Description or NoteHost of material (official, if it's from FIRST or the developer of the thing in question)
Most topics have three options: Overview, Reference, and Visualize. Occasionally the format differs to accomodate certain materials.
If the material is hosted on this site, a (same tab) link will appear.
-
It's worth setting it up now so you can just think about code later.
If you are a brand new programmer, look for someone to consult with regarding whether you should start with Blocks or Java. The best person to talk to would be a friend or family member who is a programmer, because they know you well. If you don't know any programmers, ask your team's mentors. They will know the benefits and drawbacks of both methods and can help you learn in a way that will make it easier for you to work with the rest of the team. If nobody around you actually knows much about this, see this list:
-
Blocks lets you assemble a program with visual blocks that you can drag around. The program will execute top-to-bottom down a chain of blocks. Some blocks produce values, and they will fit into spaces on other blocks which accept values. (Programming is really all about moving data around.) A text-based language, such as Java, instead relies on typed lines of code, which also (usually) execute top-to-bottom. The main advantage to Blocks is that each block is visible in the menu you grab them from, so you can immediately see all the available options. With a text-based language, you have to determine the task you want to accomplish then look up what tools the language provides to do that. All the options can indeed be found, and Java makes it relatively easy with Javadoc, but you have to look slightly deeper to find them. However, most programmers find that this advantage of Blocks is quickly outweighed by the many benefits of text-based languages:
- A lot more features are available, and you can create more that you can share across all of your programs. (This is a simplified description of Libraries.)
- It is easier to split your code into sections, as you can divide it across multiple files. (This makes it easier to manage larger projects, as you can develop or even replace individual sections easily.)
- It can be much faster to type each line than it is to find and drag the correct block to the correct location.
- For FTC in particular, a lot more support materials are available for Java, and it is a lot easier to utilize libraries and collaborate as a team, especially when your team uses Android Studio to decentralize the workflow.
- If you have ever done some programming in a text-based language and felt at least reasonably confident in what you were doing, then you should consider programming in Java. Blocks can be a good tool to help you learn to program, but at this age, you are likely patient enough to be able to learn the basics of a text-based language and look up what you can use to accomplish a given task. We recommend Java whenever it is feasible, but if you are having a hard time understanding the foundational concepts, you might want to fall back to Blocks for a little while. You might not even want to use FTC blocks - MIT AppInventor and Berkeley's Snap! are great options for teaching the foundational concepts of programming in ways that can be carried into text-based languages.
If you decided on Blocks, you will be interacting directly with the Robot Controller. You can safely ignore the Android Studio section of this page. If you chose Java, there are two environments available. There is no difficulty gradient between the two, and for consistency, you should choose the one that the rest of your team already uses.
- OnBotJava is a Java editor built into the Robot Controller. OpModes must be edited on and saved to that device. If you will be using this option, you can safely ignore the Android Studio section of this page.
- Android Studio is an IDE (Integrated Development Environment), which provides additional features such as code completion (it can suggest available fields and methods as you are typing) and the ability to edit code without a Robot Controller present and build it onto one or more Robot Controllers later. Studio can also integrate with a Version Control System (VCS), such as Git (covered below). Many teams who use Studio host their code on a GitHub repository to enable all their programmers to write code from home, and the VCS lets multiple people modify the same file and have their changes safely merged together. Once everyone is back at the shop, the code can be built onto the actual robot. If you are using Studio, the entire page applies to you. You will still need to interact with a Robot Controller on occasion, so read the section below.
-
Get to Blocks, OnBotJava, and configuration
- Connecting to a Robot ControllerREV Robotics (official)
- The REV Hardware Client will only work with REV Control Hubs. If you are using a phone as a robot controller, you will have to use the web interface.
- Control Hub: Connect to the network it's hosting (5GHz only by default), then browse to 192.168.43.1:8080
- Phone: Connect to the network it's hosting (5GHz only by default), then browse to 192.168.49.1:8080
- If you are using Blocks or OnBotJava, skip the next section and go to
-
REV Control Hubs are Android devices, and this IDE (Integrated Development Environment) is used to write and build code that runs on them.
Part 1 - Installation and Configuration
- As with most programs, Android Studio (which is actually Jetbrains' "IntelliJ IDEA" with some extra tools included for Android development specifically) has a guided installer.
- Download Android StudioAndroid Developers (official)
- Brief Guide to Installing Android StudioAndroid Developers (official)
- You do not need to install the "Virtual Device" (an Android phone emulator) if you are only going to use this installation for robot programming. (It cannot emulate a robot, so it is not very helpful for us.) This will save about a gigabyte of space, and you can always add it back in if you need to.
Part 2- Git Integration
- Check with your returning teammates or mentors to see if this section applies to you. Many teams use Git / GitHub to track their code, but not all teams do, or they may use a different system. If your team does not use Git, you can safely skip this part.
Part 1 - Connect Android Studio (IDEA) to Git
- We need to tell the IDE where our code is.
- You may want to consider creating a fork of FtcRobotController and cloning your fork. This will give you your own GitHub repository that you can push to, letting you work from multiple computers and making it easier for multiple developers to work on the same code. Also, when the official repository updates, you can update your fork to match. This will be easier if you don't put anything on the master branch; at least make another branch to do your development on.
- Overview: Click "Get from VCS" on the Studio Welcome screen, and sign in to GitHub with the account you want to use (if it works) or generate a personal access token. Then, get the repository URL from the Code tab on your GitHub page. Studio will clone the repo and open a new project. Studio does not come with Git, so if Git is not already installed on your system, get it here.git-scm.com (official)
- Reference: Set up a Git repository in IDEAJetbrains (official)
- Visualize: Android Studio: Clone a GitHub RepositoryStackera via YouTube
- The Version Control pane at the bottom in the video has since been replaced by the Commit pane on the left. Otherwise, everything still matches the video for the most part.
Part 2 - Git
- To take full advantage of this version control system, we need to understand how it operates.
Part 3 - Git from within Android Studio
- We can use Git right inside Android Studio! This is convenient - you can edit a file, go to a tab in the same editor, and stage and commit those changes.
Part 3 - Basic Usage and Features
- A large IDE can be intimidating if you're not used to it, but a basic familiarity with IDEA's features will make it a lot more friendly, and over time you will find ways to make it more powerful.
-
Learn the basics of the language and Object-Oriented Programming (OOP)
- Overview: Java Tutorial
- W3Schools Java Tutorial - a normal Java tutorial. You only need to go through the "Tutorial" and "Methods" sections. You can try some of the exercises by either installing the Java runtime or using something like Replit, or you can just wait until we write code for a robot.W3Schools
- Learn Java For FTC - a 220-or-so page PDF with a specific focus on FTC programming and more of a curricular style. If you read this, you might not need the Hello Robot tutorial later.Alan Smith
- Reference: Java API Documentation (Javadoc)Oracle
- For your second season: Oracle's Java tutorial - You're ready to start utilizing Object-Oriented Programming concepts and creating your own libraries and interfaces. This tutorial will introduce you to OOP and some of the more unique Java language features. Start with the "Learning the Java Language" trail.Oracle
-
The SDK created by FIRST which provides functions to interact with the robot
- You can't learn how to do something right if you can't verify that your work is correct, so you will want to have some way of testing your code. Throughout the entire season, your team will want to maintain some secondary hardware setup to test things without having to fight over who gets the only robot today. A robot from a previous season or even just a small collection of loose parts (sensors, actuators, and wires) will work well. The REV Control Hub port pinouts should help you wire it up. Another option is simulators... (same tab)
- Overview: Hello Robot - Introduction to ProgrammingREV Robotics (official)
- Android Studio users: Read through the OnBotJava portions of the tutorial. Studio has different ways to create a new OpMode, but the programming is exactly the same.
- An alternative guide to why one side of a drivetrain needs to be reversed (same tab)MI-FTC
- You might enjoy knowing that the Springboard, despite being developed fully independently of this particular tutorial, happens to fully align with their pacing and decisions on which concepts to introduce now and which to save for your second season. We both came to the same conclusion, so it is likely a good one.
- Reference: FtcRobotController API Reference (Javadoc)FIRST (official) via javadoc.io
- This should provide a description of every object and method provided by the SDK. Sometimes it doesn't, but it is still an invaluable resource for determining if something can be done and how to do it, as well as discovering features of the SDK that you didn't know before. Sometimes it's worth just browsing around to stumble upon useful features.
- Most of what you will need to know is in the RobotCore (com.qualcomm.robotcore) package. The hardware devices (motors, servos, sensors, etc.) provided are in com.qualcomm.robotcore.hardware. Other useful places to look include com.qualcomm.robotcore.util and Telemetry (org.firstinspires.ftc.robotcore.external.Telemetry).
What is an "OpMode"?
An "OpMode" is a program, just like any other. It's really no more complicated or confusing than that. Still, for FTC it must follow a basic structure. This involves making your class extend either OpMode or LinearOpMode, and deciding which to use can be a bit tricky. Here's the simple answer:
- If you are brand new to this, LinearOpMode is probably your best bet for writing your first programs.
- If you have only worked with procedural programming (Lightbot, programs with no callbacks (functions as objects), etc.), then you will want to start with LinearOpMode.
- If you are at least reasonably confident in handling callbacks (functions as objects) OR have ever programmed for Arduino, you will almost certainly prefer OpMode.
- Programming a Mecanum Drivetrain (Our page on motor directions (same tab))Game Manual 0
You will never memorize everything. You have already become a confident programmer when you can gather the information you need to complete a task on your own. Plenty of good resources are available on the internet, and here's a few reliable sources to help you start exploring. Additionally, a great project for your first off-season is to just go make something - perhaps a well-made OpMode or an interface you wish you had during the season - that requires knowledge and expertise you don't have yet. Once you start looking up how to do a few things, you will soon find a few reliable resources that you can turn to.
When you can learn new things on your own, you don't need the Springboard anymore! Enjoy your time as a confident FTC programmer!
- You will need the official API (Application Programming Interface) documentation. - This tells you all the classes and methods available, what arguments they take, what they will return, and their general purpose. This covers literally everything provided to you by the FtcRobotController SDK.FIRST (official) via javadoc.io
- REV Hub Pinouts, when you want to wire and test something yourselfREV Robotics (official)
- The FTC Forum - If your mentors don't know the answer to a question or there's a weird technical problem, you can ask about it here.FIRST (official)
- Also the FTC Forum (the old one, because they did not bring the old posts forward when they migrated)FIRST (official)
- Official FIRST FTC documentation (although there's not much there that you haven't already learned here)FIRST (official)
- FtcRobotController (the SDK) on GitHub - Make sure to check out the repository Wiki. Follow links in the README to official resources, open an issue to report a bug or suggest a new feature, or fork the repository to make your team's own GitHub repo. The advantage of forking is that updates made to the SDK can also be applied to your fork while leaving your code intact.FIRST (official) via GitHub
- Game Manual 0
- GM0 is a similar concept to the Springboard with some similar resources.
- ftctutorials.com
- FTC Tricks
🄯 2023. Any copyrights given in the remainder of this statement are collectively held by the "MI-FTC" GitHub organization and all its members. The FTC Springboard (this particular page) has only one license term associated with it: No person or other entity can sell this work or access to it. It should be freely accessible. Of course, if you use it as a portion of a larger profit-making work, that's fine. We just don't want people to have to pay for this. Otherwise, do literally anything else you want with it. A non-exhaustive list of examples: It can be included in any larger work, whether commercial or noncommercial, profit-making or not. You can publish modified versions of the Springboard or derivative works. You can also just publish it verbatim if you want to mirror it, archive an older version, or anything else. We don't really care, just don't sell the work itself. Thank you for being a kind member of the FTC community!