blob: 3958f7dfdd4628dbb8e35f8fd592ad6161dca784 [file] [log] [blame]
Austin Schuh813b9af2015-03-08 18:46:58 -07001package frc971.actors;
2
3// Parameters to send with start.
4struct StackParams {
Austin Schuh85bda502015-03-15 19:57:27 -07005 // If true, don't grab the lower tote after lowering.
6 bool only_place;
7
8 // The angle to move the arm to while lowering it.
9 double arm_clearance;
10
Austin Schuh813b9af2015-03-08 18:46:58 -070011 double claw_out_angle;
12 // The height just above the box to move before lowering.
13 double over_box_before_place_height;
14
15 // Bottom position.
16 double bottom;
17};