blob: b31982b9a59789ae44140e070809ea1c80ef1d79 [file] [log] [blame]
Austin Schuh813b9af2015-03-08 18:46:58 -07001package frc971.actors;
2
3// Parameters to send with start.
4struct LiftParams {
5 // Lift height
6 double lift_height;
7 // Arm goal.
8 double lift_arm;
Brian Silverman697d07b2015-03-19 23:41:11 -07009
Austin Schuh3cba3792015-04-19 20:01:22 -070010 // If true, do the second lift.
11 bool second_lift;
12 // Arm goal.
13 double intermediate_lift_height;
14
Brian Silverman697d07b2015-03-19 23:41:11 -070015 // True to move the claw in the middle of the lift.
16 bool pack_claw;
17 // Iff pack_claw is true, the angle to move the claw to.
18 double pack_claw_angle;
Austin Schuh813b9af2015-03-08 18:46:58 -070019};