IronPLC Playground
IEC 61131-3 in the browser
▶ Run
▷ Step
↻ Reset
Scans:
Load .iplc
PROGRAM main VAR count : INT; doubled : INT; END_VAR (* In a PLC, the program runs in a loop called a "scan cycle". Each click of Step runs one cycle. Variables keep their values between cycles, so count increases each time. *) count := count + 1; doubled := count * 2; END_PROGRAM
Variables
Diagnostics
Run a program to see variable values.
No diagnostics.
Drop .iplc file to load and execute