The code base for our 2020 robot "Spangler"
To open the main robot code, open Visual Studio Code, click "Open Folder", and open the FRC2019
folder.
This repository also contains our Vision Coprocessor code left over from 2019. This application runs on a Raspberry Pi, analyzes video from a camera, and publishes information about the targets it sees. To open this project, click "open folder" in VSCode and open the VisionCoprocessor
folder.
To build and run the vision coprocessor:
VisionCoprocessor/build/libs/VisionCoprocessor-all.jar
.master
: This is the "polished" branch. Code should only be merged into this branch after it has passed the software acceptance test. The idea here is that, at any time, if we need fully-working code on the robot, we can just put the contents of master
on.develop
: This is the normal common development branch. Most of the time we should work out of develop, or out of a feature branch.feature/my_cool_feature
: A feature branch. Make a new feature branch before starting work on a new feature. Commit all your work here, and push it every time you have a connection. Merge your feature into develop
once you finish it.