Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame^] | 1 | namespace y2016.control_loops.shooter; |
2 | |||||
3 | table Output { | ||||
4 | // Voltage in volts of the left and right shooter motors. | ||||
5 | voltage_left:double; | ||||
6 | voltage_right:double; | ||||
7 | |||||
8 | // See comments on the identical fields in Goal for details. | ||||
9 | clamp_open:bool; | ||||
10 | push_to_shooter:bool; | ||||
11 | |||||
12 | // If true, the lights are on. | ||||
13 | lights_on:bool; | ||||
14 | |||||
15 | forwards_flashlight:bool; | ||||
16 | backwards_flashlight:bool; | ||||
17 | } | ||||
18 | |||||
19 | root_type Output; |