1516X High Stakes 2.0
Codebase for 1516X High Stakes season
Loading...
Searching...
No Matches
intake.h
Go to the documentation of this file.
1#pragma once
2
3namespace Robot
4{
5
9class Intake {
10public:
17 void run();
18
22 void score();
23
24 Intake();
25
29 void toggle();
30
31private:
33
38
39};
40}
The Intake class represents a robot intake system.
Definition intake.h:9
void score()
Outakes alliance rings into latched mobile goal and ejects enemy rings.
Definition intake.cpp:35
void toggle()
Toggles intake elevation.
Definition intake.cpp:29
bool alliance_color
blue is false, red is true.
Definition intake.h:37
void run()
Runs the main function of the intake system.
Definition intake.cpp:15
bool elevated
Definition intake.h:32
Definition auton.h:8