I want to time events on startup of the control/ machine
so in startup.fil
I want
if #34=0 then #127=1 then after some time #126=1 and after some time #125=1
I figured out that I need to use the TIMER command and probably use the timer.fil
I am still not able to figure out how this work even with what is explained in the supplied manuals.
Let me know if somebody could help
thnks
Mr precourt
The answer is a simple one. You do not use the TIMER.
Do this:
IF #34=0 THEN #127=1: SLEEP .50: #126=1: SLEEP .25: #125=1
Carlo