blob: 0aa2938e4069271205c1eda0627b34eae289ba08 [file] [log] [blame]
James Kuszmaul78e29ac2020-07-28 21:07:03 -07001namespace frc971.codelab;
2
3table Status {
4 // Lets consumers of Status know if the requested intake is finished. Should
5 // be set to true by the intake subsystem when the Goal message is requesting
6 // the intake to be on and the limit sensor from the position message has
7 // been enabled.
Ravago Jonesfb6a7a52020-11-14 13:47:46 -08008 intake_complete:bool (id: 0);
James Kuszmaul78e29ac2020-07-28 21:07:03 -07009}
10
11root_type Status;