Class PathFollowerStep
- java.lang.Object
-
- org.wildstang.framework.auto.AutoStep
-
- org.wildstang.framework.auto.steps.PathFollowerStep
-
public class PathFollowerStep extends AutoStep
-
-
Constructor Summary
Constructors Constructor Description PathFollowerStep(double[][] pathInfo, PathFollowingDrive drive)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidinitialize()This method is called once, when the step is first run.java.lang.StringtoString()Returns the name of the AutoStep, used to uniquely identify the step.voidupdate()This method is called on the active step, once per call to RobotTemplate.autonomousPeriodic().-
Methods inherited from class org.wildstang.framework.auto.AutoStep
isFinished, setFinished, setFinished
-
-
-
-
Constructor Detail
-
PathFollowerStep
public PathFollowerStep(double[][] pathInfo, PathFollowingDrive drive)
-
-
Method Detail
-
initialize
public void initialize()
Description copied from class:AutoStepThis method is called once, when the step is first run. Use this method to set up anything that is necessary for the step.- Specified by:
initializein classAutoStep
-
update
public void update()
Description copied from class:AutoStepThis method is called on the active step, once per call to RobotTemplate.autonomousPeriodic(). Steps will continue to have this method called until they set finished to true. Note: this method is first called right after initialize(), with no delay in between.
-
-