diff --git a/Choosing-a-Programming-Tool.md b/Choosing-a-Programming-Tool.md new file mode 100644 index 0000000..1c95c6f --- /dev/null +++ b/Choosing-a-Programming-Tool.md @@ -0,0 +1,23 @@ +You will need to select a programming tool to be able to write op modes for your competition robot. There are currently three recommended programming tools that are available: + +1. **The FTC Blocks Programming Tool** - A visual, programming tool that lets programmers use a web browser to create, edit and save their op modes. This tool is recommended for novice programmers and for users who prefer to design their op modes visually, using a drag-and-drop interface. + +
+ +2. **The FTC OnBot Java Programming Tool** - A text-based programming tool that lets programmers use a web browser to create, edit and save their Java op modes. This tool is recommended for programmers who have basic to advanced Java skills and who would like to write text-based op modes. + +
+ +3. **Android Studio** - An advanced integrated development environment for creating Android apps. This tool is the same tool that professional Android app developers use. Android Studio is only recommended for advanced users who have extensive Java programming experience. + +
+ +Each tool has its own merits and weaknesses. For many users (especially rookies and novice programmers), _**the FTC Blocks Programming Tool is the best overall tool to use**_. The Blocks Programming Tool is intuitive and easy-to-learn. It is the fastest way to get started programming your robot. + +The FTC OnBot Java Programming Tool is similar to the Blocks Programming Tool. However, OnBot Java is a text-based tool and it requires that the user have a sound understanding of the Java programming language. + +