Skip to content
This repository has been archived by the owner on Dec 25, 2020. It is now read-only.

Commit

Permalink
Merge pull request #107 from J0hnCena/master
Browse files Browse the repository at this point in the history
Invert rotation and change the intake arm speed multiplier to 0.1
  • Loading branch information
LoadingPleaseWait committed Jun 26, 2016
2 parents 8f7ad59 + f9a8342 commit a73a271
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/org/impact2585/frc2016/systems/IntakeSystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class IntakeSystem implements RobotSystem, Runnable{
private DigitalInput shootingLimitSwitch;
private IntakePID armPID;
private boolean isPIDEnabled;
public static final double ARM_SPEED = 0.3;
public static final double ARM_SPEED = 0.1;
public static final long FORWARD_LEVER_TIME = 250;
public static final long BACKWARDS_LEVER_TIME = 233;
private boolean disableSpeedMultiplier;
Expand Down
2 changes: 1 addition & 1 deletion src/org/impact2585/frc2016/systems/WheelSystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class WheelSystem implements RobotSystem, Runnable{
@Override
public void init(Environment environ) {
drivebase = new RobotDrive(new Victor(RobotMap.FRONT_LEFT_DRIVE), new Spark(RobotMap.REAR_LEFT_DRIVE), new Victor(RobotMap.FRONT_RIGHT_DRIVE), new Spark(RobotMap.REAR_RIGHT_DRIVE));
drivetrain = new Drivetrain(DEADZONE, RAMP, PRIMARY_ROTATION_EXPONENT, SECONDARY_ROTATION_EXPONENT, false, drivebase);
drivetrain = new Drivetrain(DEADZONE, RAMP, PRIMARY_ROTATION_EXPONENT, SECONDARY_ROTATION_EXPONENT, true, drivebase);
input = environ.getInput();
accel = environ.getAccelerometerSystem();
forwardPIDSystem = new PIDSubsystem(0.45, 0.375, 0) {
Expand Down

0 comments on commit a73a271

Please sign in to comment.