hexagon logo

Looping and keeping the numbers

I have a fixture that holds 10 parts. Let's say I have to run 50. How do I have the report continue with the eleventh part? Meaning once all 10 have run. It starts back at one in the report. I am new to the logic part of the software....obviouslyStuck out tongue closed eyes
  • You would build a loop within a loop.

    You start by making the program to inspect one part.

    Next you put that code in a loop that offsets the program for each position in the fixture.
    If your fixture is 10 parts right next to each other so you are only offsetting along one axis then this would be a single loop that just offsets by some increment along the axis each time to move to the next position. If your fixture is 2 rows of 5 then you would have a loop within a loop here. The inner loop would offset along the row from 1 to 5 and then the outer loop would offset down to the next row and then run the inner loop from 1 to 5 again.

    So now you have code to inspect the 10 parts that your fixture can hold. So now you put all of that in yet another loop that will repeat that code as many times as necessary.

    You could have an operator input comment that asks how many parts total will be run. It then takes that input and divides by the number of positions in the fixture. This gives you the number of times it needs to loop the program. Put in some instructions at the beginning for loading and at the end for unloading and you'll be all set.

    Once all runs have completed you have a print command to generate the reports and the runs of all parts will be in the report.
  • I have one fixture off set in the positive Y. So, I would write another loop inside the the first loop? Or, I can just make a comment in the beginning asking how many parts to run(50), and that will give me the reports numbered up to 50. What would the inner loop look like? For logic it's not very logical lol.
  • The comment by itself does nothing. It is only a way to input a variable value. I don't have the time to write you a detailed code example. There must be many on this forum already that you can study and learn from. Perhaps someone else will have a chance to respond in more detail.
  • The question that you are asking is potentially pretty complicated and will take a long time to explain in sufficient detail. It has probably already been addressed in whole or in part on this forum in the past so you can very likely piece together an answer without having to wait for someone to respond to you. I was just trying to point you in the direction of digging through the information that is already available here so you can hopefully make progress on your own. There are hundreds of threads on here about looping, using fixtures to measure multiple parts, etc.
  • Maybe something like......
    L1=label
    ........... Your loop
    .......
    END_LOOP
    C1=comment/yesno,no,full screen=no, MEASURE MORE PARTS?
    IF/C1.INPUT=="YES"
    GOTO/L1
    END_IF