584,826 active members*
5,174 visitors online*
Register for free
Login
Results 1 to 3 of 3
  1. #1
    Join Date
    Oct 2008
    Posts
    23
    Hello

    I have a problem with my Emco 332. The opposed spindle needs to wait for spindle 1 due to risk of collision and I have to enter the function WAITM(2,1,1) in channel 2.
    Now channel 2 waits for channel 1, but I don’t know what I have to enter in channel 1 so that channel 2 continues.

    Please help me out!

    Kind regards
    Janko

  2. #2
    Hello
    I added a short example:


    channel 1:

    %_N_MPF100_MPF
    N10 INIT(2,"MPF200")
    *
    *
    N11 START(2) ; Process in channel 2
    *
    *
    N80 WAITM(1,1,2) ; wait for WAIT marker 1 in channel 1 and in channel 2 processing continues in channel 1
    *
    *
    N180 WAITM(2,1,2) ; wait for WAIT maker 2 in channel 1 and
    ; in channel 2 further processing in channel 1
    *
    *
    N200 WAITE(2) ; wait for program end of channel 2
    *
    *
    N201 M30 ;Program end channel 1 , complete end



    channel 2:
    %_N_MPF200_MPF
    ;$PATH=/_N_MPF_DIR ; processing in channel 2

    N70 WAITM(1,1,2) ; wait for WAIT marker 1 in channel 1 and in channel 2 processing continues in channel 1
    *
    *
    N270 WAITM(2,1,2) ; wait for WAIT maker 2 in channel 1 and und
    ; in channel 2 further processing in channel 1
    *
    *
    N400 M30 ;end of program channel 2

    You can also read it in the programming manual...
    Eine Schraube ohne Gewinde ist ein Nagel<br /><br />Grüsse aus dem Harz - InTex<br />

  3. #3
    Like Intex said, its worth reading the manuals...
    WAITM ( marker Nr., channel 1, channel, channel.....)
    So WAITM(1,1,2)
    There are only 10 types of people in the world: Those who understand binary, and those who don&#39;t<br />Wir haben einen exponentiellen Zuwachs an <strike>Doofen</strike> Pack im Forum

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •