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.
- 01Run
- 02Test ON
- 03Test OFF
Program · Main
Switch controls light
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.