blob: 9509fa772a32607020048f77543354e219225bc2 [file] [log] [blame]
James Kuszmaul78e29ac2020-07-28 21:07:03 -07001namespace frc971.codelab;
2
3// This is the goal message for the subsystem--it will be sent irregularly and
4// is used to specify what the subsystem should be doing.
5table Goal {
6 // If set to true, the intake should turn on the motor and run until the
7 // limit sensor in the Position message turns on.
Ravago Jonesfb6a7a52020-11-14 13:47:46 -08008 intake:bool (id: 0);
James Kuszmaul78e29ac2020-07-28 21:07:03 -07009}
10
11root_type Goal;