Course Content
Benefits of PLC
0/1
Overview of PLC Components
0/2
CPU – The Brain of the PLC
0/1
PLC Communication Module
0/1
PLC Basics Quiz
0/1
Ladder Logic (LAD) Programming
Ladder Logic Programming Basics
0/2
IL Programming Basics
0/2
ST Programming Basics
Structured Text (ST) Programming Basics
0/2
FBD Programming Basics
Function Block Diagram (FBD) Programming Basics
0/2
SFC Programming Basics
Sequential Function Chart (SFC) Programming Basics
0/2
Learn PLC Basics

Instruction List (IL) is a low-level, text-based programming language defined in the IEC 61131-3 standard.

It closely resembles assembly language and is used for simple, fast control logic.

Structure:

A program is made up of a series of instructions, one per line

Each instruction includes:

  • An operator (e.g., LD, ST, AND, OR)
  • One or more operands, separated by commas

LD – means Load or Make current result equal to the operand 

 

 

 

 

 

 

 

 

 

 

 

 

 

Syntax Rules:

A label may precede an instruction:

START: LD VAR1

Comments must appear at the end of a line

Empty lines can be added for clarity