Examples of Jaguar


Examples of edu.wpi.first.wpilibj.Jaguar

    public boolean shooterState;
   
    public BallShooter() {
        super("BallShooter");
       
        leftShooterMotor = new Jaguar(RobotMap.SHOOTER_LEFT);
        rightShooterMotor = new Jaguar(RobotMap.SHOOTER_RIGHT);

        shooterState = false;
    }
View Full Code Here

Examples of edu.wpi.first.wpilibj.Jaguar

    private double unlocked = -1.0;

    public BridgeArm() {
        super("BridgeArm");

        bridgeArm_Jag = new Jaguar(RobotMap.BRIDGE_PUSHER);
        bridgeArmLock = new Servo(RobotMap.BRIDGE_ARM_LOCK_MODULE, RobotMap.BRIDGE_ARM_LOCK);
    }
View Full Code Here

Examples of edu.wpi.first.wpilibj.Jaguar

    }
   
    public BallPickup() {
        super("BallPickup");
       
        leftPickupMotor_Lower = new Jaguar(RobotMap.PICKUP_LEFT_LOWER);
        rightPickupMotor_Lower = new Jaguar(RobotMap.PICKUP_RIGHT_LOWER);
        pickupMotor_Upper = new Jaguar(RobotMap.PICKUP_UPPER);

    }
View Full Code Here

Examples of edu.wpi.first.wpilibj.Jaguar

    /**
     * Creates a jaguar at a channel. The channel is the port number on the Digital side car
     * @param channel
     */
    public GRTJaguar(int channel) {
        jaguar = new Jaguar(4,channel);
    }
View Full Code Here

Examples of edu.wpi.first.wpilibj.Jaguar

public class GRTJaguar extends Actuator implements PIDOutput{

    private Jaguar jaguar;

    public GRTJaguar(int channel) {
        jaguar = new Jaguar(channel);
    }
View Full Code Here

Examples of edu.wpi.first.wpilibj.Jaguar

    /**
     * Creates a jaguar at a channel. The channel is the port number on the Digital side car
     * @param channel
     */
    public GRTJaguar(int channel) {
        jaguar = new Jaguar(channel);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.