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),