blob: 58a29db702ef78ca54beabb18f7db60b933e9a02 [file] [log] [blame]
James Kuszmaul78e29ac2020-07-28 21:07:03 -07001namespace frc971.codelab;
2
3table Status {
Sabina Leaver7d9220d2021-06-30 20:55:15 -07004 // This FlatBuffer lets consumers of Status know if the requested intake is
5 // finished. There is one field, intake_complete, which should be set to
6 // true by the intake subsystem when the Goal message is requesting the intake
7 // to be on and the limit sensor from the position message has been enabled.
8
9
Ravago Jonesfb6a7a52020-11-14 13:47:46 -080010 intake_complete:bool (id: 0);
James Kuszmaul78e29ac2020-07-28 21:07:03 -070011}
12
13root_type Status;