Roborio will not use new code from eclipse

Hi, I am the new programer for Corner Canyon Robotics. Our robot will only use the code from last year and not use any of my new code although eclipse says “BUILD SUCCESSFUL”. Also, we think it is the program but, our robot will twitch to the left in random intervals and for random amounts of time.
What we have tried:

  1. Replacing motor controllers
  2. Replacing all motors
    3.Re-imaging roborio’
    4.Updating firmware on roborio
  3. Factory reset roborio

Some Specs:

  1. Laptop running windows 10
  2. Updated Robot Radio

CODE ON ROBORIO:
package org.usfirst.frc.team5071.robot;

import edu.wpi.first.wpilibj.DriverStation;
import edu.wpi.first.wpilibj.smartdashboard.SendableChooser;
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
import edu.wpi.first.wpilibj.IterativeRobot;
import edu.wpi.first.wpilibj.Joystick;
import edu.wpi.first.wpilibj.PWM;
import edu.wpi.first.wpilibj.RobotDrive;
import edu.wpi.first.wpilibj.Talon;
import edu.wpi.first.wpilibj.command.Scheduler;
import edu.wpi.first.wpilibj.livewindow.LiveWindow;

/**

  • The VM is configured to automatically run this class, and to call the

  • functions corresponding to each mode, as described in the IterativeRobot

  • documentation. If you change the name of this class or the package after

  • creating this project, you must also update the manifest file in the resource

  • directory.
    */
    public class OldRobot extends IterativeRobot {

    private RobotDrive robit;
    private Talon talon;
    private Joystick xbox;
    private DriverStation station;
    private boolean AButton, BButton, XButton, YButton, rightBumper, leftBumper, startButton, stopButton;
    private double axisXleft, axisYleft, axisXright, axisYright, leftTrigger, rightTrigger;

    /**

    • This function is run when the robot is first started up and should be
    • used for any initialization code.
      */
      public void robotInit() {
      xbox = new Joystick(0);
      //0=front left 1=back left 2= front right 3= back right
      robit = new RobotDrive(0,1);
      talon = new Talon(2);
      AButton = false;
      BButton = false;
      XButton = false;
      YButton = false;
      rightBumper = false;
      leftBumper = false;
      startButton = false;
      stopButton = false;
      }

    public void disabledPeriodic() {
    Scheduler.getInstance().run();
    }

    /**

    • This function is called periodically during autonomous
      */
      public void autonomousPeriodic() {
      Scheduler.getInstance().run();
      }

    public void teleopInit() {
    // This makes sure that the autonomous stops running when
    // teleop starts running. If you want the autonomous to
    // continue until interrupted by another command, remove
    // this line or comment it out.
    }

    /**

    • This function is called when the disabled button is hit. You can use it
    • to reset subsystems before shutting down.
      */
      public void disabledInit() {
      talon.stopMotor();
      }

    /**

    • This function is called periodically during operator control
      */
      public void teleopPeriodic() {
      Scheduler.getInstance().run();
      AButton = xbox.getRawButton(1);
      BButton = xbox.getRawButton(2);
      XButton = xbox.getRawButton(3);
      YButton = xbox.getRawButton(4);
      rightBumper = xbox.getRawButton(5);
      leftBumper = xbox.getRawButton(6);
      stopButton = xbox.getRawButton(7);
      startButton = xbox.getRawButton(8);

      axisXleft = xbox.getRawAxis(0);
      axisYleft = xbox.getRawAxis(1);
      leftTrigger = xbox.getRawAxis(2);
      rightTrigger = xbox.getRawAxis(3);
      axisXright = xbox.getRawAxis(4);
      axisYright = xbox.getRawAxis(5);
      talon.enableDeadbandElimination(true);
      talon.set(0);
      if(axisXleft < 0.1){
      axisXleft = 0;
      }
      if(axisYleft <0.1){
      axisYleft = 0;
      }
      if(axisXright < 0.1){
      axisXright = 0;
      }
      if(axisYright <0.1){
      axisYright = 0;
      }

      // robit.arcadeDrive(-axisYleft, -axisXleft + axisYleft, true);
      // Game drive
      robit.tankDrive(-axisYleft, -axisYright, true);

      if (leftTrigger == 1) {
      robit.drive(.7, axisXleft - axisYleft);
      } else if (rightTrigger == 1) {
      robit.drive(-.7, axisXleft - axisYleft);
      } else {
      robit.stopMotor();
      }
      if (AButton == true) {
      talon.set(-.6);
      } else if (BButton == true) {
      talon.set(.2);
      } else {
      talon.set(0);
      }

      // Lift
      /*

      • if (leftTrigger == 1) { talon.set(-.2);
      • Scheduler.getInstance().run(); } else if (rightTrigger == 1) {
      • talon.set(.8); Scheduler.getInstance().run(); } else { talon.set(0);
      • Scheduler.getInstance().run(); }
        */
        // if (AButton == true) {
        // talon.set(1);
        // Timer.delay(5);
        // talon.set(-1);
        // Timer.delay(5);
        // talon.set(0);
        //
        // } else {
        // talon.set(0);
        // }
        // Kill button
        if (startButton == true) {
        station.release();
        }
        }

    /**

    • This function is called periodically during test mode
      */
      public void testPeriodic() {
      LiveWindow.run();
      }

    public RobotDrive getRobit() {
    return robit;
    }

    public void setRobit(RobotDrive robit) {
    this.robit = robit;
    }

    public Joystick getXbox() {
    return xbox;
    }

    public void setXbox(Joystick xbox) {
    this.xbox = xbox;
    }

    public boolean isAButton() {
    return AButton;
    }

    public void setAButton(boolean aButton) {
    AButton = aButton;
    }

    public boolean isBButton() {
    return BButton;
    }

    public void setBButton(boolean bButton) {
    BButton = bButton;
    }

    public boolean isXButton() {
    return XButton;
    }

    public void setXButton(boolean xButton) {
    XButton = xButton;
    }

    public boolean isYButton() {
    return YButton;
    }

    public void setYButton(boolean yButton) {
    YButton = yButton;
    }

    public boolean isrightBumper() {
    return rightBumper;
    }

    public void setrightBumper(boolean rightBumper) {
    this.rightBumper = rightBumper;
    }

    public boolean isleftBumper() {
    return leftBumper;
    }

    public void setleftBumper(boolean leftBumper) {
    this.leftBumper = leftBumper;
    }

    public double getAxisXleft() {
    return axisXleft;
    }

    public void setAxisXleft(double axisXleft) {
    this.axisXleft = axisXleft;
    }

    public double getAxisYleft() {
    return axisYleft;
    }

    public void setAxisYleft(double axisYleft) {
    this.axisYleft = axisYleft;
    }

    public double getAxisXright() {
    return axisXright;
    }

    public void setAxisXright(double axisXright) {
    this.axisXright = axisXright;
    }

    public double getAxisYright() {
    return axisYright;
    }

    public void setAxisYright(double axisYright) {
    this.axisYright = axisYright;
    }

    public double getleftTrigger() {
    return leftTrigger;
    }

    public void setleftTrigger(double leftTrigger) {
    this.leftTrigger = leftTrigger;
    }

    public double getrightTrigger() {
    return rightTrigger;
    }

    public void setrightTrigger(double rightTrigger) {
    this.rightTrigger = rightTrigger;
    }

    public boolean isStopButton() {
    return stopButton;
    }

    public void setStopButton(boolean stopButton) {
    this.stopButton = stopButton;
    }

}



NEW CODE WE WANT TO DOWNLOAD:



package org.usfirst.frc.team5071.robot;

import edu.wpi.first.wpilibj.DriverStation;
import edu.wpi.first.wpilibj.smartdashboard.SendableChooser;
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
import edu.wpi.first.wpilibj.IterativeRobot;
import edu.wpi.first.wpilibj.Joystick;
import edu.wpi.first.wpilibj.RobotDrive;
import edu.wpi.first.wpilibj.SampleRobot;
import edu.wpi.first.wpilibj.Talon;
import edu.wpi.first.wpilibj.Timer;
import edu.wpi.first.wpilibj.Victor;
import edu.wpi.first.wpilibj.command.Scheduler;
import edu.wpi.first.wpilibj.livewindow.LiveWindow;

public class NewDrive extends SampleRobot {

RobotDrive myDrive;
Joystick xbox;
private double axisXleft, axisYleft, axisXright, axisYright, leftTrigger, rightTrigger;

public void robotInit() {
	myDrive = new RobotDrive(1,2,3,4);
	xbox = new Joystick(1);
	axisXright = xbox.getRawAxis(4);
	axisYright = xbox.getRawAxis(5);
	axisXleft = xbox.getRawAxis(0);
	axisYleft = xbox.getRawAxis(1);
}

public void autonomousPeriodic() {

}

public void operatorControl() {
	while (isOperatorControl() && isEnabled()) {
		myDrive.tankDrive(axisYleft,  axisYright);;
		Timer.delay(0.01);
	}
}

}

Just to make sure, because you didn’t mention these:
Did you use the new Image for 2017 on the RoboRIO and
Have you updated WPILib? (Go Check for me software under either help or window, I can’t remember which)

Presuming the new code is actually getting uploaded to your robot:

You are only reading your joystick values during robotInit() - this method gets called once, right when your code starts (after being deployed or after the rio Boots). You will want to call getRawAxis() during your main control loop to get each new value from the joystick.

http://wpilib.screenstepslive.com/s/4485/m/13809/l/599700-getting-your-robot-to-drive-with-the-robotdrive-class would (I think) be a good example of how to accomplish what you’re attempting to do

Yeah, we found out that our new robot file was not named Robot.java, but the help with checking the axis really helped thanks so much!