blob: 92ca532b24069a211e6faf4e86904e25f63e9ffb [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace frc971.autonomous;
2
3// Published on ".frc971.autonomous.auto_mode"
4table AutonomousMode {
5 // Mode read from the mode setting sensors.
6 mode:int;
7}
8
9table AutonomousActionParams {
10 // The mode from the sensors when auto starts.
11 mode:int;
12}
13
14table Goal {
15 run:uint;
16 params:AutonomousActionParams;
17}