blob: 0bb5ae8ddc04c6ed726ad2af9bdade616a7fa38e [file] [log] [blame]
Niko Sohmers3860f8a2024-01-12 21:05:19 -08001include "frc971/control_loops/control_loops.fbs";
Niko Sohmers58e64c82024-01-14 12:49:54 -08002include "frc971/control_loops/profiled_subsystem.fbs";
Niko Sohmers3860f8a2024-01-12 21:05:19 -08003
4namespace y2024.control_loops.superstructure;
5
6table Position {
Niko Sohmers58e64c82024-01-14 12:49:54 -08007 // Values of the encoder and potentiometer at the intake pivot
8 intake_pivot:frc971.PotAndAbsolutePosition (id: 0);
Niko Sohmers3860f8a2024-01-12 21:05:19 -08009}
10
11root_type Position;