WestlakeLEARN
FTC · Java

FIRST Tech Challenge

FTC · Java

  • Motion Profile Concepts
  • Trapezoidal and Asymmetric Profiles
  • Implementing a Profiled Mechanism
  • Tune and Validate a Profiled Arm

Motion Profile Concepts

Position, velocity, and acceleration over time.

Module 10: Motion ProfilingControl

In this lesson, you will:

  1. 01Explain moving targets.
  2. 02Identify accel/cruise/decel.
  3. 03Connect profiles to consistency.

Concept narrative

A motion profile creates a planned path from current position to target position. Instead of asking a mechanism to jump to a new setpoint, it asks the mechanism to follow a smooth target over time.

Robot mental model

The robot gets a schedule: where it should be now, how fast it should be moving, and whether it should be accelerating or slowing down.

Implementation walkthrough

Draw the profile before coding. Label max velocity, acceleration, deceleration, and total time. Then connect those labels to mechanism behavior.

ProfileTerms.javaJava

ProfileState state = profile.calculate(timer.seconds());
telemetry.addData("target x", state.x);
telemetry.addData("target v", state.v);
telemetry.addData("target a", state.a);

Common mistakes and debugging

If the profile is too aggressive, the controller saturates and lags. If the target jumps, the profile is not being used correctly.

Practice

Sketch profiles for short and long arm moves and predict which reaches max velocity.

Checkpoint

  • Profile states are logged.
  • Constraints include units.
  • Short moves may not cruise.
  • The test record includes the setup, prediction, and observed result.
  • A teammate can repeat the check from the saved evidence without guessing.

Reflection check

Check your understanding before moving on.

Which result best demonstrates completion of “Motion Profile Concepts”?

Why record the test setup, prediction, and observed result?

0 of 2 answered

References

Game Manual 0FTC community reference for programming, controls, and robot design.FTC DashboardLive telemetry, graphs, config variables, and camera streaming.

Finished reading?

Mark this lesson complete — “Trapezoidal and Asymmetric Profiles” is up next.

Dashboard Tuning WorkflowTrapezoidal and Asymmetric Profiles