blob: 3660e43c36a528a255104c033c715d664abc7024 [file] [log] [blame]
include "frc971/control_loops/control_loops.fbs";
namespace y2016.control_loops.superstructure;
table Position {
// Zero for the intake potentiometer value is horizontal, and positive is
// up.
// Zero for the shoulder potentiometer value is horizontal, and positive is
// up.
// Zero for the wrist potentiometer value is parallel to the arm and with
// the shooter wheels pointed towards the shoulder joint. This is measured
// relative to the arm, not the ground, not like the world we actually
// present to users.
intake:frc971.PotAndIndexPosition (id: 0);
shoulder:frc971.PotAndIndexPosition (id: 1);
wrist:frc971.PotAndIndexPosition (id: 2);
}
root_type Position;