Package com.grt192.actuator

Examples of com.grt192.actuator.GRTJaguar


    canGyro.start();
    leftEncoder.start();
    rightEncoder.start();

    turnControl = new AsynchronousPIDController(new PIDController(turnP,
        turnI, turnD, canGyro, this));
    leftDriveControl = new AsynchronousPIDController(new PIDController(
        driveP, driveI, driveD, leftEncoder, this));
    rightDriveControl = new AsynchronousPIDController(new PIDController(
        driveP, driveI, driveD, rightEncoder, this));
    pointTurn = true;
    leftDriveControl.addPIDListener(this);
    rightDriveControl.addPIDListener(this);
    turnControl.addPIDListener(this);
View Full Code Here


        leftWheelX = -ROBOT_WIDTH / 2;
        rightWheelX = ROBOT_WIDTH / 2;
        leftWheelY = rightWheelY = 0;

        turnControl = new AsynchronousPIDController(new PIDController(turnP,
                turnI, turnD, gyro, this));
        leftDriveControl = new AsynchronousPIDController(new PIDController(
                driveP, driveI, driveD, encodDT1, this));
        rightDriveControl = new AsynchronousPIDController(new PIDController(
                driveP, driveI, driveD, encodDT2, this));
        pointTurn = true;
        leftDriveControl.addPIDListener(this);
        rightDriveControl.addPIDListener(this);
        turnControl.addPIDListener(this);
View Full Code Here

        dbController = new DashBoardController();
        dbController.start();
        System.out.println("Dashboard Initialized");


        driveControl = new XboxDriver(robotbase, driverStation);
        System.out.println("Controllers Initialized");

        teleopControllers.addElement(driveControl);
        System.out.println("Robot initialized OK");
    }
View Full Code Here

    public Target(GRTTwoWaySolenoid solenoid){
        this.addActuator("solenoid", solenoid);
        this.solenoid = solenoid;
    }
    public void withdraw() {
         solenoid.enqueueCommand(new Command(GRTTwoWaySolenoid.REVERSE));
         out = false;
    }
View Full Code Here

         solenoid.enqueueCommand(new Command(GRTTwoWaySolenoid.REVERSE));
         out = false;
    }

    public void extend() {
         solenoid.enqueueCommand(new Command(GRTTwoWaySolenoid.FORWARD));
         out = true;
    }
View Full Code Here

    extenderSolenoid.enqueueCommand(GRTTwoWaySolenoid.FORWARD); // Change
    extended = false;
  }

        public void punch() {
            extenderSolenoid.enqueueCommand(new Command(GRTTwoWaySolenoid.REVERSE, 3000)); //punch
            extenderSolenoid.enqueueCommand(GRTTwoWaySolenoid.FORWARD);//retract
            extended = false;
           
        }
View Full Code Here

//    public boolean isExtended() {
//        return extended;
//    }

    public void extend() {
        solenoid.enqueueCommand(new Command(GRTSolenoid.ON));
    }
View Full Code Here

    public void extend() {
        solenoid.enqueueCommand(new Command(GRTSolenoid.ON));
    }

    public void retract() {
        solenoid.enqueueCommand(new Command(GRTSolenoid.OFF));
    }
View Full Code Here

        tankDrive(leftValue, rightValue, 0);
    }

    public void tankDrive(double leftValue, double rightValue, int time) {
        System.out.println("drive:" + leftValue + "\t" + rightValue);
        Command c1 = new Command(-leftValue, time);
        Command c2 = new Command(-rightValue, time);
        getActuator("LeftJaguar1").enqueueCommand(c1);
        getActuator("LeftJaguar2").enqueueCommand(c1);
        getActuator("RightJaguar1").enqueueCommand(c2);
        getActuator("RightJaguar2").enqueueCommand(c2);
    }
View Full Code Here

    }

    public void changeMechPos(boolean state, int side) {
        if (state) {
            if (side == LEFT) {
                this.MechShifter1.enqueueCommand(new Command(MechShifter1.ON));
            } else {
                this.MechShifter2.enqueueCommand(new Command(MechShifter2.ON));
            }
        } else {
            if (side == LEFT) {
                this.MechShifter1.enqueueCommand(new Command(MechShifter1.OFF));
            } else {
                this.MechShifter2.enqueueCommand(new Command(MechShifter2.OFF));
            }
        }

    }
View Full Code Here

TOP

Related Classes of com.grt192.actuator.GRTJaguar

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.