Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added build/jars/NetworkTables.jar
Binary file not shown.
Binary file added build/jars/WPILib.jar
Binary file not shown.
Binary file added build/jars/cscore.jar
Binary file not shown.
Binary file added build/jars/navx_frc.jar
Binary file not shown.
Binary file added build/jars/opencv.jar
Binary file not shown.
Binary file modified build/org/usfirst/frc/team5401/robot/OI.class
Binary file not shown.
Binary file modified build/org/usfirst/frc/team5401/robot/Robot.class
Binary file not shown.
Binary file modified build/org/usfirst/frc/team5401/robot/RobotMap.class
Binary file not shown.
Binary file not shown.
Binary file modified build/org/usfirst/frc/team5401/robot/subsystems/DriveBase.class
Binary file not shown.
Binary file added dist/FRCUserProgram.jar
Binary file not shown.
2 changes: 2 additions & 0 deletions src/org/usfirst/frc/team5401/robot/OI.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ public OI(){
// operatorY.whenPressed(new Climb(1));
// operatorY.whenReleased(new Climb(0));

//Xbox Move Override
driverX.whenPressed(new xboxMove());

}

Expand Down
4 changes: 3 additions & 1 deletion src/org/usfirst/frc/team5401/robot/Robot.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import edu.wpi.first.wpilibj.smartdashboard.SendableChooser;
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;

import org.usfirst.frc.team5401.robot.commands.xboxMove;
import org.usfirst.frc.team5401.robot.subsystems.*;

/**
Expand Down Expand Up @@ -47,7 +48,7 @@ public void robotInit() {
oi = new OI();

// chooser.addObject("My Auto", new MyAutoCommand());
SmartDashboard.putData("Auto mode", chooser);
chooser = new SendableChooser();
}

/**
Expand Down Expand Up @@ -108,6 +109,7 @@ public void teleopInit() {
// this line or comment it out.
if (autonomousCommand != null)
autonomousCommand.cancel();
Scheduler.getInstance().add(new xboxMove());
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/org/usfirst/frc/team5401/robot/RobotMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ public class RobotMap {
//PWM Motors
public static final int LEFT_DRIVE_MOTOR_1 = 0;
public static final int RIGHT_DRIVE_MOTOR_1 = 1;
public static final int LEFT_DRIVE_MOTOR_2 = 3;
public static final int RIGHT_DRIVE_MOTOR_2 = 4;
public static final int LEFT_DRIVE_MOTOR_2 = 7;
public static final int RIGHT_DRIVE_MOTOR_2 = 8;
public static final int INFEEDER_BAR = 5;
public static final int CLIMBER_MOTOR = 6;

Expand Down
48 changes: 0 additions & 48 deletions src/org/usfirst/frc/team5401/robot/commands/Climb.java

This file was deleted.

40 changes: 0 additions & 40 deletions src/org/usfirst/frc/team5401/robot/commands/PopGear.java

This file was deleted.

44 changes: 0 additions & 44 deletions src/org/usfirst/frc/team5401/robot/commands/feederArmUpDown.java

This file was deleted.

47 changes: 0 additions & 47 deletions src/org/usfirst/frc/team5401/robot/commands/feederControl.java

This file was deleted.

41 changes: 0 additions & 41 deletions src/org/usfirst/frc/team5401/robot/commands/feederInOut.java

This file was deleted.

42 changes: 0 additions & 42 deletions src/org/usfirst/frc/team5401/robot/commands/loadShooter.java

This file was deleted.

40 changes: 0 additions & 40 deletions src/org/usfirst/frc/team5401/robot/commands/toggleCompressor.java

This file was deleted.

39 changes: 0 additions & 39 deletions src/org/usfirst/frc/team5401/robot/commands/unjamIn.java

This file was deleted.

Loading