Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame^] | 1 | include "frc971/control_loops/control_loops.fbs"; |
| 2 | |
| 3 | namespace y2016.control_loops.superstructure; |
| 4 | |
| 5 | table 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 | |
| 19 | root_type Position; |