X-Git-Url: http://challenge-bot.com/repos/?a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2FRobot.java;h=8151cde6533837bd15907b3d37a795564a262e6e;hb=150f450f2b4f9e6094d71007507a7b877e05328a;hp=24eca3c88ea8f863ad58c6b612f7d527dae930e6;hpb=b70398a7d5ac5f4ce64156d84227ccb4828c0615;p=3501%2F2017steamworks diff --git a/src/org/usfirst/frc/team3501/robot/Robot.java b/src/org/usfirst/frc/team3501/robot/Robot.java index 24eca3c..8151cde 100644 --- a/src/org/usfirst/frc/team3501/robot/Robot.java +++ b/src/org/usfirst/frc/team3501/robot/Robot.java @@ -1,5 +1,9 @@ package org.usfirst.frc.team3501.robot; +import org.usfirst.frc.team3501.robot.commandgroups.AutonMiddleGear; +import org.usfirst.frc.team3501.robot.commandgroups.AutonSideGear; +import org.usfirst.frc.team3501.robot.commands.driving.TimeDrive; +import org.usfirst.frc.team3501.robot.subsystems.Climber; import org.usfirst.frc.team3501.robot.subsystems.DriveTrain; import org.usfirst.frc.team3501.robot.subsystems.Intake; import org.usfirst.frc.team3501.robot.subsystems.Shooter; @@ -8,7 +12,9 @@ import edu.wpi.cscore.UsbCamera; import edu.wpi.first.wpilibj.CameraServer; import edu.wpi.first.wpilibj.DriverStation; import edu.wpi.first.wpilibj.IterativeRobot; +import edu.wpi.first.wpilibj.command.Command; import edu.wpi.first.wpilibj.command.Scheduler; +import edu.wpi.first.wpilibj.smartdashboard.SendableChooser; import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard; public class Robot extends IterativeRobot { @@ -16,6 +22,10 @@ public class Robot extends IterativeRobot { private static Shooter shooter; private static OI oi; private static Intake intake; + private static Climber climber; + + Command autonCommand; + SendableChooser autonChooser; @Override public void robotInit() { @@ -23,6 +33,20 @@ public class Robot extends IterativeRobot { oi = OI.getOI(); shooter = Shooter.getShooter(); intake = Intake.getIntake(); + climber = Climber.getClimber(); + + autonChooser = new SendableChooser(); + autonChooser.addDefault("Middle Gear", new AutonMiddleGear()); + autonChooser.addObject("Red Boiler Gear", + new AutonSideGear("RED", "BOILER")); + autonChooser.addObject("Red Retrieval Gear", + new AutonSideGear("RED", "RETRIEVAL")); + autonChooser.addObject("Blue Boiler Gear", + new AutonSideGear("BLUE", "BOILER")); + autonChooser.addObject("Blue Retrieval Gear", + new AutonSideGear("BLUE", "RETRIEVAL")); + SmartDashboard.putData("Autonomous Chooser", autonChooser); + CameraServer server = CameraServer.getInstance(); UsbCamera climberCam = server.startAutomaticCapture("climbercam", 0); UsbCamera intakeCam = server.startAutomaticCapture("intakecam", 1); @@ -44,11 +68,17 @@ public class Robot extends IterativeRobot { return Intake.getIntake(); } - // If the gear values do not match in the left and right piston, then they are - // both set to high gear + public static Climber getClimber() { + return Climber.getClimber(); + } + @Override public void autonomousInit() { - driveTrain.setHighGear(); + driveTrain.setLowGear(); + + // autonCommand = (Command) autonChooser.getSelected(); + autonCommand = new TimeDrive(2, 0.6); + Scheduler.getInstance().add(autonCommand); } @Override @@ -58,6 +88,7 @@ public class Robot extends IterativeRobot { @Override public void teleopInit() { + driveTrain.setHighGear(); } @Override @@ -67,10 +98,15 @@ public class Robot extends IterativeRobot { } public void updateSmartDashboard() { + SmartDashboard.putNumber("left encode ", + driveTrain.getLeftEncoderDistance()); + SmartDashboard.putNumber("right encoder", + driveTrain.getRightEncoderDistance()); SmartDashboard.putNumber("angle", driveTrain.getAngle()); SmartDashboard.putNumber("voltage", DriverStation.getInstance().getBatteryVoltage()); SmartDashboard.putNumber("rpm", shooter.getShooterRPM()); - SmartDashboard.putNumber("motor value", shooter.getTargetShootingSpeed()); + SmartDashboard.putNumber("target shooting", + shooter.getTargetShootingSpeed()); } }