Circuit Basics

Jog Operation Circuit Basics: Move Only While the Button Is Pressed

A jog operation circuit moves a machine only while the button is being pressed. It is used for small manual movements, positioning adjustments, and safe setup work.

  • Understand jog operation as momentary movement
  • Learn why self-holding is usually not used for jog
  • Check button input, output, interlocks, and movement direction separately

Good fit for

  • Beginners learning manual operation circuits
  • People who want to understand jog and inching movement
  • Field workers checking why a machine moves only while pressed

Not the focus here

  • Detailed servo jog parameter settings
  • Manufacturer-specific PLC instructions
  • Full automatic sequence design

Key conclusion

  • Jog operation is usually press-and-hold movement
  • Self-holding is avoided because the movement should stop when released
  • Safety interlocks and direction conditions are important

Mini table of contents

What is a jog operation circuit?

Jog operation means moving a machine little by little while an operator holds a button.

In factory equipment, jog operation is used when an operator needs to move a conveyor, cylinder, motor, table, or axis by a small amount. It is often used during setup, adjustment, maintenance, and manual positioning.

The key idea is simple: the machine moves while the jog button is pressed, and stops when the button is released.

Overview of a jog operation circuit
Jog operation is a momentary manual movement used to move a machine only while the operator is pressing the button.
Simple idea: Press jog button → output turns ON → machine moves → release button → output turns OFF → machine stops.

Basic operation flow

A jog circuit is usually easier to understand as a direct flow from button input to movement output.

When the jog button input turns ON, the PLC program turns ON the output for the motor, solenoid valve, or command relay. When the button input turns OFF, the output also turns OFF.

1. Press button

The operator presses and holds the jog button.

2. Output ON

The PLC turns ON the output only while the condition is true.

3. Release to stop

When the button is released, the output turns OFF.

Jog operation flow from button press to machine movement
Jog operation is based on press-and-hold behavior: movement starts when pressed and stops when released.

Why self-holding is usually not used

Jog operation should normally stop as soon as the operator releases the button.

A self-holding circuit keeps an output ON after the start button is released. That behavior is useful for normal run/stop control, but it is usually not suitable for jog operation.

In jog operation, the operator often needs fine control. If self-holding is added by mistake, the machine may continue moving after the operator releases the button.

Difference between jog operation and self-holding operation
Jog operation stops when the button is released. Self-holding operation continues until a stop condition turns it OFF.

Do not confuse jog with normal run operation

If a jog circuit accidentally behaves like a self-holding circuit, the machine may keep moving when the operator expects it to stop.

Basic ladder logic idea

The simplest jog logic is close to a press-and-hold circuit, but with safety and direction conditions added.

In a basic example, the jog button, manual mode condition, safety condition, and direction interlock are placed in series before the output coil. When all conditions are true, the output turns ON.

Basic ladder logic idea for jog operation
A jog output usually depends on the jog button, manual mode, safety conditions, and interlocks.
Condition Role Typical check
Jog button Operator command for momentary movement. Check the PLC input turns ON while the button is pressed.
Manual mode Allows jog only during manual or setup operation. Check mode selector, HMI mode, or internal mode bit.
Interlock / safety Prevents movement when unsafe or conflicting conditions exist. Check door, limit, emergency stop, reverse command, and other permissive conditions.

Safety and interlock points

Jog operation is manual, but it still needs proper interlocks.

Because jog operation moves the machine by operator command, it should be allowed only when the machine is in the correct mode and the movement is safe. For example, a forward jog and reverse jog should not be ON at the same time.

Limit switches, area sensors, guards, emergency stop circuits, and mechanical end positions may also affect whether jog movement is allowed.

Safety and interlock points for jog operation
Jog operation should include mode conditions, direction interlocks, limit checks, and safety-related permissive conditions.

Jog is not the same as bypassing safety

Jog operation is often used during setup, but it should still follow the machine’s safety concept. Do not remove necessary interlocks just because the operation is manual.

Jog, press-and-hold, and self-holding

Jog operation is close to press-and-hold, but the purpose is machine movement adjustment.

Press-and-hold describes the behavior. Jog operation describes the machine operation purpose. Self-holding is different because it keeps the output ON after the button is released.

Pattern Behavior Typical use
Press-and-hold Output is ON while the button is pressed. Momentary operation, simple manual control.
Jog operation Machine moves only while the jog command is held. Small movement, setup, adjustment, positioning.
Self-holding Output stays ON after the start button is released. Normal run/stop operation, holding a machine state.

Same-looking contacts can have different meaning

The ladder structure may look simple, but the operation purpose changes depending on mode, interlocks, and whether a holding contact is used.

Field check points

When jog operation does not work, check the command, mode, interlock, output, and actual machine movement separately.

Field check points for jog operation circuit troubleshooting
Check the jog button input, manual mode, safety conditions, direction interlock, output signal, and mechanical movement.

Jog button input

Confirm the PLC input turns ON only while the button is pressed.

Manual mode condition

Check whether the machine is actually in manual, setup, or jog-enabled mode.

Interlock condition

Check limit switches, opposite direction commands, guards, and permissive signals.

Output and device

Check the PLC output, relay, contactor, solenoid valve, motor driver, or servo command.

Stops when released

Confirm the output turns OFF when the button is released.

Mechanical movement

Check for binding, end position, abnormal load, air pressure, motor brake, or mechanical lock.

Short conversation

Senior technician character
Senior

Jog operation is used when you want to move a machine little by little during manual operation.

Junior technician character
Junior

So it moves only while I keep pressing the button?

Senior technician character
Senior

Exactly. When you release the jog button, the output should turn OFF and the movement should stop.

Junior technician character
Junior

Then I should not add self-holding to the jog output?

Senior technician character
Senior

Right. For jog operation, stopping when released is usually the important behavior.

Summary

A jog operation circuit moves a machine only while the jog button is pressed. It is useful for small manual movements, setup work, and position adjustment.

The key point is to avoid unintended holding behavior. Check the jog input, manual mode, interlocks, output, and actual machine movement separately.