Skip to content

Team2068/FRC-Resources

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

Metal Jackets Team 2068 FRC Resources

A hopefully growing list of FRC Resources for Team 2068 that will hopefully be helpful to other FRC Teams.

Github

While Github isn't the only player in the game they certainly have a huge marketshare and make it very easy to collaborate within the team and with other teams.

Some ways to take more advantage of Github are:

Student Pack

The Github Student Pack which gives access to tons of great tools for free, or free for a significant chunk of time.

Github Pages

Github Pages are "Websites for you and your projects", free if it's a public repository. Actually it's a requirement that the pages site be public, so that's important to know if you want to publish code from a private repository.

The beauty of Github Pages are:

  • they take plain text files, written with minimal markup (Markdown in this case)
  • they are based on git which makes collaboration easy
  • the default github style is quite nice when the markdown is rendered

Team Pages

One obvious use for a free (as in rootbeer) hosted static site is a Team Page. There are a number of tools for statically generating sites from simple Markdown files including:

  • Jekyll written by a Github contributor and runs all READMEs.
  • Hugo an increasing popular alternative to Jekyll written in Go.

There are many, many themes available commercially and free for both generators. Some free resources are:

You can find commercial and free resources from google searches or looking at sites like Theme Forest, though more generic sites might not be worth the effort to customize to use with Hugo/Jekyll unless you have excess time or access to someone familiar with those systems.

If you're looking for inspiration:

FRC Team 1418 uses Jekyll and Github Pages for their site, you can see:

FRC Team 1533 Triple Strange uses Hugo and Github Pages for their site, you can see:

READMEs

This is an often overlooked and under utilized part of your Github repository but building on top of Markdown and Github Pages this single page can be very useful.

Programming, Setup, etc

This is an obvious use and some teams do this much better than others. The easier it is for someone new on the team to pull down, build and run code the better.

Here are some examples of some IMHO better READMEs for FRC teams to emulate:

Team 2168

Their 2017 Steamworks README covers lots of topics including:

  • Robot Requirements
  • Student Requirements (mostly software related)
  • Information on some of the software they use during competitions and how to access
  • Coding workflow, including
  • Checklists to follow before commiting code
  • Subsystem breakdown and responsible student
Team 4931

Their 2017 Steamworks repository covers:

  • Requirements (admittedly light, as they assume all laptops are preconfigured)
  • Build instructions (using ant, to build and deploy)
  • Information on how to contribute code to the repository
ILITE Robotics

Their 2018 Power Up repository has:

  • Setup and build instructions
  • Documentation on how to commit code to the repository

Wiki's

Team 4931 has a number of repositories and a dated but extensive wiki with over 20 documents that demonstrate a number of uses a FRC team might have for wikis:

  • Team Application
  • Parent Information
  • Robot Design and Code information
  • Robot parts (can link directly from the wiki to the supplier for business subsystem, book keepers, etc)
  • Safety Procedures
  • CAD (how to set up and documents generated)
  • Inventory
  • Resources (similar to what this README is attempting to do)

Some other uses might include:

  • Sponsor Contact Information (would probably want in a private repository)
  • Sponsor Letters
  • Fundraising Ideas
  • Fundraising Templates
  • Business Plan
  • Checklists (packing, pit setup, match, scouting, competition retrospective, etc)
  • Onboarding instructions (e.g. add user to discord, trello and remind, etc.)
  • Training

Checklists are hugely useful if you use them. Why do you think NASA, Airline Pilots, and Surgeons to name a few use them?

Programming

TODO Flesh this area out, currently a dumping ground for things to investigate.

Code Quality

Debugging

Continuous Integration / Building

Continuous Integration (CI) is a system that responds to changes in a repository and then attempts to build the software.

Many things can happen during the CI cycle including:

  • run automated tests
  • run linting, style guides and other static analysis tools

But at a minimum it can at least tell you if your code will compile. Because this is done on a separate server you'll need to be able to build without IDEs (in most cases).

Some resources to help you get started are:

Scouting

Tools

Field Management

Practice like you compete.

  • Cheesy Arena "An alternative field management system for the FIRST Robotics Competition."

Driving

  • Shuffleboard a replacement to SmartDashboard.
  • FRC Dashboard is a community driven "Extensible, JavaScript-based driving dashboard framework for the FIRST Robotics Competition". Github repo

Training

Branding

FRC Team 1538's Brand Standards is a huge resource on brand and design. It covers:

  • Typography
  • Logos
  • Colors
  • Dress Codes
  • Design of print assets

Resources of Resources

  • Penultimate Manual "This manual intends to cover some of the more fine points of FRC, that may not be apparent to the casual viewer, first time student or mentor. Document worked on by Teams 1257, 2791, 1228, 4263, 612, 4150, and 5940 as well as members of the FRC Discord Server."
  • awesome frc is a list in the "awesome" style for FRC.
  • frc.link is a mnemonic shortener to help you get to e.g. a team's profile page on the official FRC website by a direct, logical link (http://frc.link/t/2068) instead of navigating through a ton of menus.

Markdown and Related Tools

  • GitPitch hosted markdown presentations
  • MacDown a free mac app to compose and preview markdown side by side.

Contributing

Contributions, corrections, enhancements are welcome via pull request.

Releases

No releases published

Packages

No packages published