blob: 7aa29b8c0b9ee2f6a73e24195e6751a336b72629 [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
10 // True to move the claw in the middle of the lift.
11 bool pack_claw;
12 // Iff pack_claw is true, the angle to move the claw to.
13 double pack_claw_angle;
Austin Schuh813b9af2015-03-08 18:46:58 -070014};