blob: cfde3ba3dcff46e9c6395f6d37d165141bb73b81 [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.
8 intake:bool;
9}
10
11root_type Goal;