IronPLC Playground
IEC 61131-3 in the browser
Examples
▶
■
⏸
Interval (ms):
0.0s
|
0 cycles
PROGRAM main VAR count : INT; doubled : INT; END_VAR (* Click Start to begin running. The program runs one scan cycle per interval. Variables keep their values between cycles, so count increases each time. *) count := count + 1; doubled := count * 2; END_PROGRAM
Variables
Diagnostics
Start a program to see variable values.
No diagnostics.