Examples of PredictiveLinearController


Examples of ca.teamdave.predicdave.PredictiveLinearController

        this.targetSpeed = new DoubleActuator(machine.getActuator(LrNames.DESIRED_SPEED));
        this.targetAccel = new DoubleActuator(machine.getActuator(LrNames.DESIRED_ACCEL));

        this.config = machine.getConfig();

        this.controller = new PredictiveLinearController(
                config.getDouble(LrNames.PID_P),
                config.getDouble(LrNames.PID_I),
                config.getDouble(LrNames.PID_D),
                config.getDouble(LrNames.V_FF),
                config.getDouble(LrNames.A_FF),
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.