blob: aabcd4323c9877b71fbd80cf762104db54bdb496 [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;
Tyler Chatow1879acc2020-02-01 13:26:48 -080011
12 // See goal for definition of 0
13 turret:frc971.PotAndAbsolutePosition;
Stephan Massaltd021f972020-01-05 20:41:23 -080014}
15
16root_type Position;