blob: e887cf52f73ca98c2782824b921e98c98ba3fd62 [file] [log] [blame]
Stephan Massaltd021f972020-01-05 20:41:23 -08001namespace y2020.control_loops.superstructure;
2
3table Output {
Sabina Davis70d5e912020-01-31 21:10:37 -08004 // Votage sent to the hood. Positive moves up.
5 hood_voltage:double;
Sabina Davis6b61de32020-02-02 12:42:51 -08006
7 // Voltage sent to motors on intake joint. Positive extends rollers.
8 intake_joint_voltage:double;
9
10 // Voltage sent to rollers on intake. Positive rolls inward.
11 intake_roller_voltage:double;
Stephan Massaltd021f972020-01-05 20:41:23 -080012}
13
14root_type Output;