Package ca.teamdave.pid

Examples of ca.teamdave.pid.PidLinear


    // keep track of the last moving setpoints for debugging
    double targetPosition, targetSpeed, targetAccel;

    public PredictiveLinearController(double p, double i, double d, double vff, double aff, double dff, double cycleTime, double epsilon) {
        this.feedback = new PidLinear(p, i, d, cycleTime);
        this.vff = vff;
        this.aff = aff;
        this.dff = dff;
        this.cycleTime = cycleTime;
View Full Code Here

TOP

Related Classes of ca.teamdave.pid.PidLinear

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.