Package org.usfirst.ihs1318.shared.data

Examples of org.usfirst.ihs1318.shared.data.ArmEncoderValues


  }

 
  public InputVelocity getInputVelocity() {
    if (inputVelocity==null) {
      inputVelocity = new InputVelocity();
    }
    return inputVelocity;
  }
View Full Code Here


    return wheelEncoderTicks;
  }

  public LimitSwitchValue getUpperLimitSwitchValue() {
    if(upperLimitSwitchValue == null) {
      upperLimitSwitchValue = new LimitSwitchValue();
    }
    return upperLimitSwitchValue;
  }
View Full Code Here

  }


  public LimitSwitchValue getLowerLimitSwitchValue() {
    if(lowerLimitSwitchValue == null)
      lowerLimitSwitchValue = new LimitSwitchValue();
    return lowerLimitSwitchValue;
  }
View Full Code Here

  }


  public LineSensorInput getLineSensorValues() {
    if (lineSensorValues==null) {
      lineSensorValues = new LineSensorInput();
    }
    return lineSensorValues;
  }
View Full Code Here

  public void setManualGyroValue(ManualGyroValue manualGyroValue) {
    this.manualGyroValue = manualGyroValue;
  }
  public ManualGyroValue getManualGyroValue() {
    if(manualGyroValue == null){
      return manualGyroValue = new ManualGyroValue();
    }
    return manualGyroValue;
  }
View Full Code Here

  public void setMiniBotValue(MiniBotValue miniBot){
    this.miniBot = miniBot;
  }
  public MiniBotValue getMiniBotValue(){
    if (miniBot == null) {
      miniBot = new MiniBotValue();
    }
    return miniBot;
  }
View Full Code Here

   * Wheel motor speeds
   * @return
   */
  public MotorSpeed getWmSpeed() {
    if (wmSpeed == null) {
      wmSpeed = new MotorSpeed();
    }
    return wmSpeed;
  }
View Full Code Here

    this.inputVelocity = inputVelocity;
  }

  public Orientation getOrientation() {
    if (orientation==null) {
      orientation = new Orientation();
    }
    return orientation;
  }
View Full Code Here

  public void setTubeRequestValue(TubeRequestValue tube){
    this.tubeRequest = tube;
  }
  public TubeRequestValue getTubeRequestValue(){
    if(tubeRequest == null){
      tubeRequest = new TubeRequestValue();
    }
    return tubeRequest;
  }
View Full Code Here

    this.orientation = orientation;
  }

  public WheelMotorEncoderRates getWheelEncoderRates() {
    if (wheelEncoderValues==null) {
      wheelEncoderValues = new WheelMotorEncoderRates();
    }
    return wheelEncoderValues;
  }
View Full Code Here

TOP

Related Classes of org.usfirst.ihs1318.shared.data.ArmEncoderValues

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.