blob: 33b21f0b30fdc25b2a85549c4fa0aa3b13fb26da [file] [log] [blame]
package frc971.actions;
queue_group CatchActionGroup {
message Status {
bool running;
};
message Goal {
// If true, run this action. If false, cancel the action if it is
// currently running.
bool run;
double catch_angle;
};
queue Goal goal;
queue Status status;
};
queue_group CatchActionGroup catch_action;