Autonomous Movement Libraries
Instead of starting from scratch, most teams use ready-made libraries for movement in their projects. These libraries have pre-built algorithms that save a lot of time compared to creating and fixing movement code by hand.
Why pick a library? Even though this guide explains how to use movement algorithms found in these libraries, we still recommend that all teams use these libraries. They're well-tested and need only a bit of tweaking to work perfectly. Some of the fancier algorithms in this guide take a lot of time to set up, which most teams don't have during the busy season.
Libraries also make sure things are super accurate, like using special math in their movement code. This means that using a library often results in a more precise autonomous program compared to one written from the ground up. That's why top FTC teams often rely on these movement libraries.
To build on that idea, the main reason top FTC teams use libraries in their code is so they can spend the time they save on writing and fixing code on other important parts of their project that can't be handled with libraries. Here are some examples:
Keeping track of a moving turret
Making the self-operating program as efficient as possible
Getting the software that controls the robot's different parts just right
Practicing how to control the robot
So, you can see that the time spent working on these tasks often makes the difference between a good team and an outstanding one.
Popular Libraries
Roadrunner
Among all the path planning libraries used in FTC robotics, this particular one stands out as the favorite choice, and there's a good reason for that. Roadrunner empowers robots to follow intricate paths in an easy-to-understand manner, allowing for the creation of autonomous programs with very little effort in terms of setup as all localization and path planning code is already implemented. We strongly suggest using this library and using the time you save to fine-tune your software or spend more time practicing how to control the robot effectively.
Keep in mind that dedicating a considerable time chunk to fine-tune the parameters requested by the library is necessary. This step ensures the library operates as anticipated. The guide provided below aims to make this tuning process more streamlined.
FTCLib
Last updated