blob: 5ac0e3866c47bb062eda135bb759d11aba80c897 [file] [log] [blame]
Maxwell Hendersonad312342023-01-10 12:07:47 -08001namespace y2023.control_loops.superstructure;
2
3table Output {
Nikita Narang27610fc2023-02-08 19:40:31 -08004 // Proximal arm voltage
5 proximal_voltage:double (id: 0);
6
7 // Distal arm voltage
8 distal_voltage:double (id: 1);
9
10 // roll_voltage for rolling joint
11 roll_joint_voltage:double (id: 2);
12
13 // Wrists rotate end effector rollers
14 // Wrist arm voltage
15 wrist_voltage:double (id: 3);
16
17 // Roller voltage on the end effector
18 roller_voltage:double (id: 4);
Maxwell Hendersonad312342023-01-10 12:07:47 -080019}
20
21root_type Output;