User Documentation
Table Of Contents
- Table of contents
- 1 Introduction
- 2 Safety instructions
- 3 System overview
- 4 Operating behavior
- 5 Software installation
- 6 Configuration
- 7 Program development
- 8 Licensing
- 9 Device Administration (DevAdmin)
- 10 Software units
- 11 OPC UA Server
- 12 Node-RED
- 13 LongtermDiagnosticMonitor
- 14 Data recorder
- 15 Diagnostics
- 16 Maintenance
- 17 Technical data
- 18 Directives and standards
- 19 Appendix: Tutorial - creating an IEC project
- 20 Appendix: Addressing in the Ethernet (basics)
- 21 Appendix: Tutorial FoE
- 22 Appendix: Tutorial - call C function from IEC
- Index

Program development
System manual
2696790000/02/04.2020
35
elseif step == 9 then
elseif step == 10 then
end
--Exit DeviceService--
elseif transition == "Exit DeviceService" then
if step == 1 then
elseif step == 2 then
elseif step == 3 then
elseif step == 4 then
elseif step == 5 then
elseif step == 6 then
elseif step == 7 then
elseif step == 8 then
elseif step == 9 then
elseif step == 10 then
end
--Init Controller--
elseif transition == "Init Controller" then
if step == 1 then
elseif step == 2 then
elseif step == 3 then
elseif step == 4 then
elseif step == 5 then
elseif step == 6 then
elseif step == 7 then
elseif step == 8 then
elseif step == 9 then
elseif step == 10 then
end
--Exit Controller--
elseif transition == "Exit Controller" then
if step == 1 then
elseif step == 2 then
elseif step == 3 then
elseif step == 4 then
elseif step == 5 then
elseif step == 6 then
elseif step == 7 then
elseif step == 8 then
elseif step == 9 then
elseif step == 10 then
end
--Start Applications--
elseif transition == "Start Applications" then
if step == 1 then
elseif step == 2 then
elseif step == 3 then
elseif step == 4 then
elseif step == 5 then
elseif step == 6 then
elseif step == 7 then
elseif step == 8 then
elseif step == 9 then
elseif step == 10 then
end
--Stop Applications
elseif transition == "Stop Applications" then
if step == 1 then
elseif step == 2 then
elseif step == 3 then
elseif step == 4 then
elseif step == 5 then
elseif step == 6 then
elseif step == 7 then
elseif step == 8 then
elseif step == 9 then
elseif step == 10 then
end
end
, --- DOCHECK -----------------------------------
docheck = function()
end