Getting Started with Robot Development
WPILib
InstallationWPILib guide:has https://docs.wpilib.org/en/stable/docs/zero-to-robot/step-2/wpilib-setup.htmltheir own guide for setting up your development environment, however since their guide is designed for everybody across FRC, it has a lot of information not relevant to our team. Following the guide below should get you set up for developing robot programs for Yeti. If you run into any issues in your set up, please leave a comment below with any improvements or questions you have, and check out the WPILib guide as it may have the solution to your problem.
- Scroll down to assets and download the appropriate
versioninstaller for your operatingsystemsystem.IfRead this if you
haveuse a macBefore installing WPILib, mac users will need to install XCode Command Line Tools. These are tools developed by Apple for C++ development which WPILib requires to run. To do so, open the Terminal app on your mac and run the following command
xcode-select --install
Next, you need to install the appropriate installer for the processor your mac uses, either an Intel or M series (arm64) chip. If you are unsure
ifwhichyouyourshouldmacdownloaduses, do thearm64following:or intel version,- Click the apple logo menu in the top left of your screen
- Click about this mac
- If it says you have an Apple M1/M2/etc. chip, download the arm64 installer. otherwise download the
intelIntel version - Open the file you downloaded
- Run the
installerWPILibInstaller - Click
startStart - Choose the
"ToolsOnly"Only installation method. DO NOT CHOOSE EVERYTHING You should now have WPILib installer- Download IntelliJ
communityCommunityeditionEditionusing(NOTthe appropriate installer fromUltimate) here: https://github.www.jetbrains.com/wpilibsuite/allwpilib/releases/tag/v2023.4.3idea/download - Run the installer and install IntelliJ
- Open IntelliJ
and open settings Go toSelect the plugin taband search FRC. Make sure you are inon theMarketplaceleft- Select the marketplace tab
andatnottheInstalled.top InstallSearch and install the FRC plugin
and clickWhy Tools Only instead of Everything?
The Tools Only option will install all the development tools you need to code an FRC robot. The way you actually use those tools to write your code is up to you.
Selecting Everything will install all the tools in addition to a dedicated instance of VS Code, a very popular code editor that can be used to write just about any kind of program. If you already have VS Code installed, it will still install a new version. This is one reason I do not recommend this path, as it can be confusing what version of VS Code you are using.
The other reason is because here on Yeti, we use IntelliJ to write our robot code. This is because IntelliJ is specifically designed for developing Java programs, and so has many useful features that VS Code lacks out of the box. Additionally, I have found that Java development in VS Code is simply much buggier because it is not specifically designed for it while IntelliJ is.
Install for this User or Install for all Users? (doesn't apply to mac)
If you share your computer with anyone else, for example a parent, you should install for this user. If your computer is just yours, you should install for all users. The reason being is that installing for all users requires administrator privileges, which you may not have if this is not your computer. The difference does not matter too much, but installing for all users may create less problems in the future in terms of other software dependencies or updates.
IntelliJ
Once you have this set up, download the 2022 robot project from GitHub. It would be best to clone the
repository,repository using git, but if you are unsure of how to do this, you can just click the green Code button and download it as a zip.Open the project in IntelliJ. You may have some errors about a missing JDK. You should be able to download this through IntelliJ, but it's ok for now if you can't.
Leave a comment down below if you have any questions or run into any problems with this guide!
NOTE: This guide is for Windows, macOS, and Linux computers. You will NOT be able to write robot programs with ChromeOS.
Download the installer for the latest version from the https://github.com/wpilibsuite/allwpilib/releases/tag/v2023.4.3WPILib Github.