Fix stupid stuff
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / shooter / PrintData.java
1 package org.usfirst.frc.team3501.robot.commands.shooter;
2
3 import org.usfirst.frc.team3501.robot.Constants;
4
5 import edu.wpi.first.wpilibj.command.CommandGroup;
6
7 /**
8 *
9 */
10 public class PrintData extends CommandGroup {
11
12 public PrintData() {
13 for (int i = 0; i < Constants.Shooter.speeds.size(); i++) {
14 System.out.println("speed: " + Constants.Shooter.speeds.get(i)
15 + ", distance: " + Constants.Shooter.distances.get(i));
16 }
17 }
18 }