blob: 3660e43c36a528a255104c033c715d664abc7024 [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.
Ravago Jonesfb6a7a52020-11-14 13:47:46 -080014 intake:frc971.PotAndIndexPosition (id: 0);
15 shoulder:frc971.PotAndIndexPosition (id: 1);
16 wrist:frc971.PotAndIndexPosition (id: 2);
Alex Perrycb7da4b2019-08-28 19:35:56 -070017}
18
19root_type Position;