Learn PLCs free
Comparison OperationsBeginnerIEC 61131-3

LE (Less Than or Equal)

Returns TRUE when first input is less than or equal to second input.

The LE (Less Than or Equal) comparison function returns TRUE when the first input is less than or equal to the second input. It is used for maximum limit checks, upper boundary validation, and ensuring values stay within acceptable ranges.

Parameters

Inputs

NameTypeDescription
IN1ANY_NUMFirst value
IN2ANY_NUMSecond value

Outputs

NameTypeDescription
OUTBOOLTRUE when IN1 <= IN2

Ladder Logic Example

// Ladder Logic - LE Comparison
//
// |----[LE]---( Within_Limit )----|
// | IN1: Motor_Speed               |
// | IN2: Max_Speed (1800)          |

Structured Text Example

Within_Limit := (Motor_Speed <= Max_Speed);

20 Production-Ready Ladder Logic Templates

Stop writing the same rungs from scratch. Get copy-paste-ready templates for motor control, PID loops, safety interlocks, conveyors, and more.

Platform-Specific Implementation

S

Siemens (TIA Portal)

Use CMP <= instruction in TIA Portal.

AB

Allen-Bradley (Studio 5000)

Use LEQ (Less Than or Equal) instruction.

C

CODESYS

Use <= operator in ST or LE function block.

Common Applications

  • Maximum speed limiting
  • Upper boundary checks
  • Capacity limit verification
  • Dosage limit control

Frequently Asked Questions

What is LE (Less Than or Equal) in PLC programming?

Returns TRUE when first input is less than or equal to second input. The LE (Less Than or Equal) comparison function returns TRUE when the first input is less than or equal to the second input. It is used for maximum limit checks, upper boundary validation, and ensuring values stay within acceptable ranges.

What are common applications of LE (Less Than or Equal)?

LE (Less Than or Equal) is commonly used for: Maximum speed limiting, Upper boundary checks, Capacity limit verification, Dosage limit control.

How do I use LE (Less Than or Equal) in different PLC platforms?

Siemens: Use CMP <= instruction in TIA Portal. Allen-Bradley: Use LEQ (Less Than or Equal) instruction. CODESYS: Use <= operator in ST or LE function block.

Stop Writing Ladder Logic From Scratch

Get 20 production-ready ladder logic templates for $29 -- download instantly and use them on your next project today.

20
Ready-Made Templates
LD + ST
Both Languages Included
$29
One-Time Purchase
Get Instant Access -- $29

Instant download - 30-day money-back guarantee - Use on unlimited projects

Free PLC simulator

Wire this block up and run it

Drop the instruction into a rung, hit Run, and watch it execute in your browser. 12 guided lessons across 8 PLC dialects — free account, no credit card.

Practice PLCs free →