blob: 5450c08bea59170432d131b5d0fd45355518e076 [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace frc971.control_loops.drivetrain;
2
3// Allows you to reset the state of the localizer to a specific position on the
4// field.
5table LocalizerControl {
6 x:float; // X position, meters
7 y:float; // Y position, meters
8 theta:float; // heading, radians
9 theta_uncertainty:double; // Uncertainty in theta.
10 keep_current_theta:bool; // Whether to keep the current theta value.
11}
12
13root_type LocalizerControl;