112113114115116117118119120
this.airCompressor = airCompressor; } public WheelMotorEncoderTicks getChangeInTicks() { if(changeInTicks == null){ changeInTicks = new WheelMotorEncoderTicks(); } return changeInTicks; }
104105106107108109110111112
return armInput; } public WheelMotorEncoderTicks getWheelEncoderTicks() { if(wheelEncoderTicks == null){ wheelEncoderTicks = new WheelMotorEncoderTicks(); } return wheelEncoderTicks; }
858687888990919293
public void setWristValue(WristValues wrist){ this.wrist = wrist; } public WristValues getWristValue(){ if(wrist == null){ wrist = new WristValues(); } return wrist; }
343536373839404142
public static WristValues WRIST_HIGH1; public static WristValues WRIST_HIGH2; public static WristValues getWRIST_LOW1() { WRIST_LOW1 = null; WRIST_LOW1 = new WristValues(); WRIST_LOW1.setWristPosition(WristValues.WRIST_CLOSED); return WRIST_LOW1; }
404142434445464748
WRIST_LOW1.setWristPosition(WristValues.WRIST_CLOSED); return WRIST_LOW1; } public static WristValues getWRIST_LOW2() { WRIST_LOW2 = null; WRIST_LOW2 = new WristValues(); WRIST_LOW2.setWristPosition(WristValues.WRIST_CLOSED); return WRIST_LOW2; }
464748495051525354
WRIST_LOW2.setWristPosition(WristValues.WRIST_CLOSED); return WRIST_LOW2; } public static WristValues getWRIST_MIDDLE1() { WRIST_MIDDLE1 = null; WRIST_MIDDLE1 = new WristValues(); WRIST_MIDDLE1.setWristPosition(WristValues.WRIST_LOW); return WRIST_MIDDLE1; }
525354555657585960
WRIST_MIDDLE1.setWristPosition(WristValues.WRIST_LOW); return WRIST_MIDDLE1; } public static WristValues getWRIST_MIDDLE2() { WRIST_MIDDLE2 = null; WRIST_MIDDLE2 = new WristValues(); WRIST_MIDDLE2.setWristPosition(WristValues.WRIST_LOW); return WRIST_MIDDLE2; }
585960616263646566
WRIST_MIDDLE2.setWristPosition(WristValues.WRIST_LOW); return WRIST_MIDDLE2; } public static WristValues getWRIST_HIGH1() { WRIST_HIGH1 = null; WRIST_HIGH1 = new WristValues(); WRIST_HIGH1.setWristPosition(WristValues.WRIST_OPEN); return WRIST_HIGH1; }
646566676869707172
WRIST_HIGH1.setWristPosition(WristValues.WRIST_OPEN); return WRIST_HIGH1; } public static WristValues getWRIST_HIGH2() { WRIST_HIGH2 = null; WRIST_HIGH2 = new WristValues(); WRIST_HIGH2.setWristPosition(WristValues.WRIST_OPEN); return WRIST_HIGH2; }