blob: dba178af70230012a8a3b5c8910d0850ef52be93 [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 (id: 0);
right_voltage:double (id: 1);
// Whether to set each shifter piston to high gear.
left_high:bool (id: 2);
right_high:bool (id: 3);
}
root_type Output;