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
8class Intake {
9public:
16 void run();
17
22 void checkStop();
23
24 Intake();
25
29 void toggle();
30
31private:
33
38};
39} // namespace Robot
void checkStop()
Checks whether the intake should stop to skip the ring depending on color. It is the embodiment of vi...
Definition intake.cpp:33
void toggle()
Toggles intake elevation.
Definition intake.cpp:30
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:16
bool elevated
Definition intake.h:32
Definition auton.h:8