blob: 7fa390f6a1f5eab55eee09d944975116ccc76858 [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
Austin Schuh99ee0512022-02-20 16:42:52 -08009 // Positive lifts the catapult to fire.
Jacob Ismael322ebb92022-02-09 20:12:47 -080010 catapult_voltage:double (id: 1);
11
12 // Voltage of the turret falcon
Austin Schuh99ee0512022-02-20 16:42:52 -080013 // Positive rotates the turret around the Z axis (up) according to the
14 // right hand rule.
Jacob Ismael322ebb92022-02-09 20:12:47 -080015 turret_voltage:double (id: 2);
milind-u086d7262022-01-19 20:44:18 -080016}
17
18root_type Output;