hexagon logo

learning looping.... I Want to just repeat program in the program?

So I have 100 small squares with 4 holes on the corners, I am set up to run 3 then the program ends.

I want to just replace the parts while the machine measures the last one, is this looping or a subroutine?

I will be getting 500 more tommorrow, and will likely measure 10 at a time instead.

any examples or point to previous thread appreciated!

Optivv 3 PCDMIS CAD 2011 MR1 Vision probe.

JoeSlight smile
Parents
  • So I have 100 small squares with 4 holes on the corners, I am set up to run 3 then the program ends.

    I want to just replace the parts while the machine measures the last one, is this looping or a subroutine?

    I will be getting 500 more tommorrow, and will likely measure 10 at a time instead.

    any examples or point to previous thread appreciated!

    Optivv 3 PCDMIS CAD 2011 MR1 Vision probe.

    JoeSlight smile


    Just one possible solution.

    Insert a label

    LABEL/L1

    your code to loop the 3 parts

    Insert a yes/no comment such as "measure more parts?"

    use Flow Control (C1.INPUT or change to whatever your yes/no comment name is)

    IF C1.INPUT == "YES"
    GOTO/L1
    END_IF

    Hope this helps
Reply
  • So I have 100 small squares with 4 holes on the corners, I am set up to run 3 then the program ends.

    I want to just replace the parts while the machine measures the last one, is this looping or a subroutine?

    I will be getting 500 more tommorrow, and will likely measure 10 at a time instead.

    any examples or point to previous thread appreciated!

    Optivv 3 PCDMIS CAD 2011 MR1 Vision probe.

    JoeSlight smile


    Just one possible solution.

    Insert a label

    LABEL/L1

    your code to loop the 3 parts

    Insert a yes/no comment such as "measure more parts?"

    use Flow Control (C1.INPUT or change to whatever your yes/no comment name is)

    IF C1.INPUT == "YES"
    GOTO/L1
    END_IF

    Hope this helps
Children
No Data