FTC Code
  • Welcome!
  • Page 7
  • Getting Started
    • Page 1
    • Choosing an IDE
    • Creating an OpMode
    • Motors
    • Servos
  • Common Module Applications
    • Linear Slides
    • Sweeper
    • Kicker
    • Claw
    • Turret
    • Cantilever
    • Four Bar
    • Flywheel
  • Vision
    • Page 2
    • Page 6
  • Odometry
  • Efficient Path Following
    • Page 4
  • Efficient Tele-op Control
    • Page 5
Powered by GitBook
On this page
  • What are my options?
  • Block Programming
  • OnBot Java
  • Android Studio

Was this helpful?

  1. Getting Started

Choosing an IDE

What are my options?

There are three options for starting off programming in FTC. You can use Block Programming, OnBot Java, or Android Studio

For the sake of this resource, all instruction will be in JAVA

Block Programming

Block Programming is great for first timers who are just getting into FTC Coding. Not much prior knowledge is needed to start, and is likely the best option if you are new to FTC and don't have a programming background. The setup is also very easy. However, there are some drawbacks, the biggest problem is the fact that it is not possible to import external libraries into blocks such as OpenCv or Roadrunner, which can greatly improve your team's software functions.

OnBot Java

OnBot Java is a code editor that can be accessed on the web, that uses JAVA code to download code to the robot. It is still very easy to setup as it requires no additional downloads, and downloads are done by connecting to the robot's Wi-Fi network. However, additional libraries are very hard to use in OnBot Java.

Android Studio

Android Studio is an IDE in which you use the JAVA programming language to write code and download it to the Control Hub or Phone. If you have background knowledge of JAVA, or a little experienced in programming, this is the best option as it allows for the most freedom. You can use many external libraries and tools as well as having the ability to download via USB or wirelessly using ADB to the control hub or a phone.

PreviousPage 1NextCreating an OpMode

Last updated 1 year ago

Was this helpful?