Quote:
Originally Posted by Kingofl337
Doug
Try putting a 500ms wait at the start of Operator Comtrol.
Let me know if that fixes the issue.
Adam
|
Thanks Adam,
We don't have a continuos loop in operators mode but it goes to the end and runs again, thus with a 500ms wait then there would be a wait as it runs each time.
So should we be running a while loop or something so it never finishes the operator mode and thus it would be ok to have the 500ms wait at start?
Thus operator code would be:
delay 500ms
while 1==1
code we want run in operator mode
end while
Does this makes sense?