11-14-2012 08:42 AM
I'm using labview RT with vision assistant and i want to have a signal to stop the machine if the last 5 inspection result is Fail.
11-15-2012 11:37 AM
One way to do this would be to output the inspection result to a shift register, and then stop if the last 5 results are Fail.
If you want more specific device, I could help more if I knew more about your application.
11-18-2012 01:54 AM
How can i make " if the last 5 results from the inspection fail "
11-18-2012 09:55 AM
Here is the way I would do it in LabVIEW:
Create a counter variable. Each time the test passes, zero the counter. Each time the test fails, increment the counter. If the counter is equal to 5, output a signal.
Bruce