> For the complete documentation index, see [llms.txt](https://velocity-raptors-9450.gitbook.io/intro-to-frc-programming-romi/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://velocity-raptors-9450.gitbook.io/intro-to-frc-programming-romi/romi-command-based/robotcontainer.md).

# RobotContainer

RobotContainer is a class that combines the subsystems, commands, and triggers of the robot. It's basically the brain of the robot.

***

## What to do with this Class?

This class is like a sort of hub for the robot. Here, you should write most of your non-subsystem and non-command-related code. You should also store your subsystems and triggers here, rather than across different files. Having a single, central "hub" for your robot makes it a lot easier for you, t

### ConfigureBindings()

`ConfigureBindings()` is where you'll declare most of your triggers, and occassionally commands. More info on triggers is in [External Controllers](/intro-to-frc-programming-romi/romi-command-based/subsystems/external-controllers.md).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://velocity-raptors-9450.gitbook.io/intro-to-frc-programming-romi/romi-command-based/robotcontainer.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
