blob: 1b706d0198c40672a26847bb9570d9ac41dbe251 [file] [log] [blame]
Daniel Pettiaece37f2014-10-25 17:13:44 -07001package bot3;
2
3message Rollers {
4 // Positive voltage = intaking, Negative = spitting.
5 double front_intake_voltage;
6 double back_intake_voltage;
7 // Voltage for the low goal rollers.
8 // Positive voltage = ball towards back, Negative = ball towards front.
9 double low_goal_voltage;
10
11 // Whether the front and back intake pistons are extended.
12 bool front_extended;
13 bool back_extended;
14};
15queue Rollers rollers;