Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 1 | namespace frc971.control_loops.drivetrain; |
| 2 | |
| 3 | table Output { |
| 4 | // Voltage to send to motor(s) on either side of the drivetrain. |
Ravago Jones | fb6a7a5 | 2020-11-14 13:47:46 -0800 | [diff] [blame] | 5 | left_voltage:double (id: 0); |
| 6 | right_voltage:double (id: 1); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 7 | |
| 8 | // Whether to set each shifter piston to high gear. |
Ravago Jones | fb6a7a5 | 2020-11-14 13:47:46 -0800 | [diff] [blame] | 9 | left_high:bool (id: 2); |
| 10 | right_high:bool (id: 3); |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 11 | } |
| 12 | |
| 13 | root_type Output; |