blob: 40a00912f9811991d5853963f3e053f74bdc74fb [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace y2016.control_loops.superstructure;
2
3table Output {
4 voltage_intake:float;
5 voltage_shoulder:float;
6 voltage_wrist:float;
7
8 voltage_top_rollers:float;
9 voltage_bottom_rollers:float;
10
11 // Voltage to sent to the climber. Positive is pulling the robot up.
12 voltage_climber:float;
13 // If true, release the latch to trigger the climber to unfold.
14 unfold_climber:bool;
15
16 // If true, release the latch to hold the traverse mechanism in the middle.
17 traverse_unlatched:bool;
18 // If true, fire the traverse mechanism down.
19 traverse_down:bool;
20}
21
22root_type Output;