Skip to main content
Robotics & Embodied AI

⏱ About 15 min15 XP

Making a Robot Move

A robot arm hangs still in a factory, waiting. A controller sends a signal. Half a second later, the arm swings precisely 47 degrees and stops. That single motion required a whole chain of events: a number computed in software, converted to an electrical signal, delivered to a motor, which spun a gearbox, which rotated a joint. Every link in that chain had to work correctly, or the arm would have overshot, stalled, or swung the wrong way entirely. This lesson traces that chain from the first command to the last millimeter of movement.

The Motion Chain: From Command to Movement

Every moving robot has at least three layers working together: a controller, an actuator, and a mechanical structure. The controller is the brain — it is a computer or microprocessor that decides what motion to make. The actuator is the muscle — it converts an electrical signal into physical force. The mechanical structure is the skeleton — bones, joints, and linkages that translate the actuator's force into the shape of motion you want. When you tell a robot arm to reach for an object, the controller calculates exactly what angle each joint must reach. It sends a command voltage or digital pulse to each actuator. The actuator exerts torque on the joint. The mechanical structure carries that torque through to the tip of the arm. The object gets picked up — or it does not, if any step went wrong.

Actuator

An actuator is any device that converts electrical energy into mechanical motion. Motors, servos, hydraulic pistons, and air-powered muscles are all actuators. Every moving part of a robot has at least one.

Degrees of Freedom

When engineers talk about how a robot can move, they use the phrase degrees of freedom, often abbreviated DOF. One degree of freedom means one independent direction of movement. A simple hinge joint has one DOF: it rotates around a single axis, like your elbow. A ball-and-socket joint, like your shoulder, has three DOF: it can rotate in three directions independently. A robot arm with six joints — each with one DOF — has six degrees of freedom total. That sounds like a lot, and it is: six DOF is just enough to place the arm's end at any position in its workspace and orient it at any angle. A robot with fewer DOF cannot reach every possible position or angle. A robot with more DOF has redundancy: multiple ways to reach the same point, which can help it avoid obstacles.

Degrees of Freedom (DOF)

DOF counts the number of independent ways a robot can move. Each additional DOF adds a new direction of motion. More DOF means greater flexibility but also greater control complexity.

Match each part of the motion chain to its role.

Terms

Controller
Actuator
Mechanical structure
Degree of freedom
Torque

Definitions

Rotational force that spins or holds a joint against resistance
Computes target angles and sends electrical commands
Transmits force through joints and links to produce the desired motion
One independent direction of movement available to a joint or robot
Converts electrical signals into physical force or torque

Drag terms onto their definitions, or click a term then click a definition to match.

Precision Is Harder Than It Looks

Moving a joint to exactly 47 degrees requires more than just sending the right voltage. Mechanical systems have backlash — tiny gaps in gears where motion can shift without the motor turning. They have compliance — slight springiness in materials that causes small errors. Temperature changes make metal expand and contract, shifting the zero position. Friction varies with speed and load. All of these physical realities mean a command of 47 degrees rarely results in exactly 47 degrees without careful design and feedback. Precision robotics addresses this with tight manufacturing tolerances, stiff materials, lubrication, and above all, sensing — measuring the actual angle achieved and correcting errors in real time. The sensing-and-correcting loop is so important it gets its own name: closed-loop control, which you will study in detail in Lesson 4.

Backlash

Backlash is the small play or slop in a gearset where teeth do not mesh perfectly. When a motor reverses direction, it must first take up the backlash gap before the joint actually moves. High backlash means commands translate imprecisely — a serious problem in surgical or assembly robots.

In the motion chain from command to movement, what is the role of an actuator?

A robot shoulder joint that can rotate up-down, left-right, and twist has how many degrees of freedom?

Trace the Motion Chain

  1. Step 1: Choose a simple robotic motion — a robotic arm picking up a cup, a drone tilting left, a wheeled robot turning.
  2. Step 2: Draw or describe three labeled boxes for Controller, Actuator, and Mechanical Structure.
  3. Step 3: Write one sentence inside each box describing exactly what happens in your chosen motion at that stage.
  4. Step 4: Identify one place in the chain where an error could sneak in and describe what effect it would have on the final motion.
  5. Step 5: Share your chain with a partner and compare where you each placed the likely error point.