blob: fb356e0e7f88ba016f86e10b42d298b1b9d860dc [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001include "frc971/control_loops/control_loops.fbs";
2
3namespace y2016.control_loops.superstructure;
4
5table Position {
6 // Zero for the intake potentiometer value is horizontal, and positive is
7 // up.
8 // Zero for the shoulder potentiometer value is horizontal, and positive is
9 // up.
10 // Zero for the wrist potentiometer value is parallel to the arm and with
11 // the shooter wheels pointed towards the shoulder joint. This is measured
12 // relative to the arm, not the ground, not like the world we actually
13 // present to users.
14 intake:frc971.PotAndIndexPosition;
15 shoulder:frc971.PotAndIndexPosition;
16 wrist:frc971.PotAndIndexPosition;
17}
18
19root_type Position;