Live training lab

Run your first real PLC program.

No video and no pretend switch. This is the actual Beginner 01 simulator, running the same program and I/O tests as the full course.

  1. 01Run
  2. 02Test ON
  3. 03Test OFF

Program · Main

Switch controls light

IEC 61131-3 ST
VAR
  SWITCH AT %I0.0 : BOOL;
  LIGHT  AT %Q0.0 : BOOL;
END_VAR

LIGHT := SWITCH;

PLC I/O bench

CPU RUN

SCAN 20 ms · IEC runtime

INPUT · %I0.0

SWITCH

OUTPUT · %Q0.0

LIGHT

Next test

Run the program to start the PLC scan.