Build a Full Road Runner Autonomous
Complete vision-selected Road Runner autonomous.
Complete vision-selected Road Runner autonomous.
In this lesson, you will:
The full autonomous capstone proves the curriculum has connected: hardware setup, vision, localization, actions, tuning, mechanisms, and debugging all meet in one routine.
The robot is now a coordinated system. Each layer should be testable alone and visible in telemetry when combined.
Test vision selector, each path, each mechanism action, then full sequence. Add a pre-match checklist for start pose, camera result, and selected branch.
FullAuto.javaJava
try {
Actions.runBlocking(new SequentialAction(
closeClaw(),
selectedBranchPath,
new ParallelAction(scorePath, armToScore()),
releaseAndPark()
));
} finally {
robot.safeState();
}Full auto failures must be isolated by layer. Print vision result, selected action, pose, mechanism state, and stop reason.
Build and document a full autonomous routine with three branches and a fallback.
Check your understanding before moving on.
0 of 2 answered