James Kuszmaul | 78e29ac | 2020-07-28 21:07:03 -0700 | [diff] [blame] | 1 | namespace frc971.codelab; |
| 2 | |
| 3 | table Status { |
Sabina Leaver | 7d9220d | 2021-06-30 20:55:15 -0700 | [diff] [blame] | 4 | // 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 Jones | fb6a7a5 | 2020-11-14 13:47:46 -0800 | [diff] [blame] | 10 | intake_complete:bool (id: 0); |
James Kuszmaul | 78e29ac | 2020-07-28 21:07:03 -0700 | [diff] [blame] | 11 | } |
| 12 | |
| 13 | root_type Status; |