blob: ec754b454dda6cd886e880cbbbda490332c5af96 [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.
8 intake_complete:bool;
9}
10
11root_type Status;