blob: 8db5e68c43702eb63ea54d02bfecc82483304973 [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace y2014.control_loops.claw;
2
3// All angles here are 0 vertical, positive "up" (aka backwards).
4table Goal {
5 // The angle of the bottom claw.
Austin Schuhb3375e02020-11-14 15:28:31 -08006 bottom_angle:double (id: 0);
Alex Perrycb7da4b2019-08-28 19:35:56 -07007 // How much higher the top claw is.
Austin Schuhb3375e02020-11-14 15:28:31 -08008 separation_angle:double (id: 1);
Alex Perrycb7da4b2019-08-28 19:35:56 -07009 // top claw intake roller
Austin Schuhb3375e02020-11-14 15:28:31 -080010 intake:double (id: 2);
Alex Perrycb7da4b2019-08-28 19:35:56 -070011 // bottom claw tusk centering
Austin Schuhb3375e02020-11-14 15:28:31 -080012 centering:double (id: 3);
Alex Perrycb7da4b2019-08-28 19:35:56 -070013}
14
15root_type Goal;