Stephan Massalt | d021f97 | 2020-01-05 20:41:23 -0800 | [diff] [blame] | 1 | namespace y2020.control_loops.superstructure; |
| 2 | |
| 3 | table Output { |
Sabina Davis | 70d5e91 | 2020-01-31 21:10:37 -0800 | [diff] [blame] | 4 | // Votage sent to the hood. Positive moves up. |
| 5 | hood_voltage:double; |
Sabina Davis | 6b61de3 | 2020-02-02 12:42:51 -0800 | [diff] [blame] | 6 | |
| 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; |
Tyler Chatow | 1879acc | 2020-02-01 13:26:48 -0800 | [diff] [blame] | 12 | |
| 13 | //Voltage sent to the motors. |
| 14 | //Positive rotates counterclockwise from a birds eye view. |
| 15 | turret_voltage:double; |
Tyler Chatow | cf41366 | 2020-02-09 14:36:36 -0800 | [diff] [blame] | 16 | |
| 17 | // Voltage sent to the feeder belt. Positive is feeding. |
| 18 | feeder_voltage:double; |
| 19 | |
| 20 | // Voltage sent to the washing_machine and control panel spinner. |
| 21 | // Positive runs the washing machine CCW facing the front of the robot, and |
| 22 | // the spinner runs CCW from a top down view. |
| 23 | washing_machine_spinner_voltage:double; |
| 24 | |
| 25 | // Voltage sent to the kicker. Positive is shooting. |
| 26 | kicker_left_voltage:double; |
| 27 | kicker_right_voltage:double; |
| 28 | |
| 29 | // Voltage sent to the flywheel. Positive is shooting. |
| 30 | flywheel_voltage:double; |
Sabina Davis | 5187f86 | 2020-02-09 13:16:51 -0800 | [diff] [blame] | 31 | |
| 32 | // Voltage sent to the motor driving the control panel. Positive is counterclockwise from above. |
| 33 | control_panel_voltage:double; |
Sabina Davis | 6737b09 | 2020-02-17 12:59:32 -0800 | [diff] [blame^] | 34 | |
| 35 | // Positive is deploying climber and to climb; cannot run in reverse |
| 36 | climber_voltage:double; |
Stephan Massalt | d021f97 | 2020-01-05 20:41:23 -0800 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | root_type Output; |