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
Actions.runBlocking(new SequentialAction(
closeClaw(),
selectedSpikePath,
new ParallelAction(scorePath, armToScore()),
releaseAndPark()
));Full auto failures must be isolated by layer. Print vision result, selected action, pose, mechanism state, and stop reason.
Check your understanding before moving on.
Which result best demonstrates completion of “Build a Full Road Runner Autonomous”?
Why record the test setup, prediction, and observed result?
0 of 2 answered
Mark this lesson complete — “Git Workflow for FTC Teams” is up next.