blob: 1ae0adc59d73340fc278c5312e991655a49f1023 [file] [log] [blame]
James Kuszmaulef428a02019-03-02 22:19:41 -08001package frc971.control_loops.drivetrain;
2
3// Allows you to reset the state of the localizer to a specific position on the
4// field.
5message LocalizerControl {
6 float x; // X position, meters
7 float y; // Y position, meters
8 float theta; // heading, radians
9};
10
11queue LocalizerControl localizer_control;