blob: da8c889882147a477218d0a70ab117d553816aad [file] [log] [blame]
namespace frc971.control_loops.drivetrain;
table Output {
// Voltage to send to motor(s) on either side of the drivetrain.
left_voltage:double;
right_voltage:double;
// Whether to set each shifter piston to high gear.
left_high:bool;
right_high:bool;
}
root_type Output;