blob: a9935e0e8d7e5d1577e69c4638c4b75376ac8f1a [file] [log] [blame]
milind-u086d7262022-01-19 20:44:18 -08001namespace y2022.control_loops.superstructure;
2
3table Output {
Griffin Bui67abb912022-01-22 16:16:21 -08004 // Voltage of the climber falcon
5 // - is down + is up
6 climber_voltage:double (id: 0);
Jacob Ismael322ebb92022-02-09 20:12:47 -08007
8 // Voltage of the catapult falcon
9 // Positive rotates counterclockwise parallel to the motor shaft
10 catapult_voltage:double (id: 1);
11
12 // Voltage of the turret falcon
13 // Positive rotates counterclockwise from a bird's eye view
14 turret_voltage:double (id: 2);
milind-u086d7262022-01-19 20:44:18 -080015}
16
17root_type Output;