Dashboard Tuning Workflow
Tune with graphs and notes instead of guesses.
Tune with graphs and notes instead of guesses.
In this lesson, you will:
FTC Dashboard shortens the tuning loop by letting teams adjust constants and graph behavior live. It is powerful only if the test procedure is repeatable.
Tuning is an experiment. The robot setup, battery voltage, target move, and mechanical condition are part of the data.
Make constants configurable, graph target/actual/error/output, change one value at a time, and copy final reviewed values back into code.
TuningConstants.javaJava
@Config
public class LiftTuning {
public static double kP = 0.004;
public static int targetTicks = 1200;
}Dashboard can encourage random knob turning. If students change multiple constants at once, they cannot learn what mattered.
Check your understanding before moving on.
Which result best demonstrates completion of “Dashboard Tuning Workflow”?
Why record the test setup, prediction, and observed result?
0 of 2 answered
Mark this lesson complete — “Motion Profile Concepts” is up next.