blob: b1169a91e1111537ba8c7b44c3b3a334cbf54b0e [file] [log] [blame]
package frc971.control_loops.drivetrain;
// Allows you to reset the state of the localizer to a specific position on the
// field.
message LocalizerControl {
float x; // X position, meters
float y; // Y position, meters
float theta; // heading, radians
double theta_uncertainty; // Uncertainty in theta.
bool keep_current_theta; // Whether to keep the current theta value.
};
queue LocalizerControl localizer_control;