Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 1 | namespace frc971.control_loops.drivetrain; |
2 | |||||
3 | // Allows you to reset the state of the localizer to a specific position on the | ||||
4 | // field. | ||||
5 | table 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 | |||||
13 | root_type LocalizerControl; |