blob: 6d7fcdf49b55a275fec1f9bbf356b8f10530499d [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace y2016.control_loops.shooter;
2
3table 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
19root_type Output;