blob: dba178af70230012a8a3b5c8910d0850ef52be93 [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.
Ravago Jonesfb6a7a52020-11-14 13:47:46 -08005 left_voltage:double (id: 0);
6 right_voltage:double (id: 1);
Alex Perrycb7da4b2019-08-28 19:35:56 -07007
8 // Whether to set each shifter piston to high gear.
Ravago Jonesfb6a7a52020-11-14 13:47:46 -08009 left_high:bool (id: 2);
10 right_high:bool (id: 3);
Alex Perrycb7da4b2019-08-28 19:35:56 -070011}
12
13root_type Output;