blob: 62754df1aa5c8419c49b87bb4ad534599e4a78ed [file] [log] [blame]
Stephan Massaltd021f972020-01-05 20:41:23 -08001include "frc971/control_loops/control_loops.fbs";
2
3namespace y2020.control_loops.superstructure;
4
5table Position {
Sabina Davis70d5e912020-01-31 21:10:37 -08006 // Zero is at the horizontal, positive towards the front (meters on the lead screw).
7 hood:frc971.AbsolutePosition;
Sabina Davis6b61de32020-02-02 12:42:51 -08008
9 // Position of the intake. 0 when four-bar is vertical, positive extended.
10 intake_joint:frc971.AbsolutePosition;
Stephan Massaltd021f972020-01-05 20:41:23 -080011}
12
13root_type Position;