Skip to main content Link Menu Expand (external link) Document Search Copy Copied

PathFollowSettings settings

A variable that holds all the path following settings for the speed controller

Example

PathFollowSettings ramseteSettings = PathFollowSettings();
RamseteController ramsete = RamseteController(
    0.0, 0.0,
    ramseteSettings
        .setBrakeMode(WheelController::exitMode::normal)
        .setExitDist(2)
        .setUseDistToGoal(true)
        .setFollowPathDist(12)
        .setVirtualPursuitDist(2));