blob: 27ac7d8d78c69aeed803e7ffe680511e6cca0dcc [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace y2016.control_loops.shooter;
2
3// All angles are in radians, and angular velocities are in radians/second.
4// For all angular velocities, positive is shooting the ball out of the robot.
5table Position {
6 // Wheel angle in radians/second.
Ravago Jonesfb6a7a52020-11-14 13:47:46 -08007 theta_left:double (id: 0);
8 theta_right:double (id: 1);
Alex Perrycb7da4b2019-08-28 19:35:56 -07009}
10
11root_type Position;