blob: da8c889882147a477218d0a70ab117d553816aad [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace frc971.control_loops.drivetrain;
2
3table Output {
4 // Voltage to send to motor(s) on either side of the drivetrain.
5 left_voltage:double;
6 right_voltage:double;
7
8 // Whether to set each shifter piston to high gear.
9 left_high:bool;
10 right_high:bool;
11}
12
13root_type Output;