Page 1 of 2 12 LastLast
Results 1 to 12 of 13

Thread: Send/receive program without output/input push

  1. #1
    Registered padobranac's Avatar
    Join Date
    Mar 2006
    Location
    Croatia
    Posts
    107
    Downloads
    0
    Uploads
    0

    Send/receive program without output/input push

    Is it possible on Fanuc 0M to send program to control without push on input and send (take) program from control to PC without typing on machine "O####, Output start"...?
    Sorry for bad english


  2. #2
    Registered
    Join Date
    Jan 2007
    Location
    Hamilton,Oh
    Posts
    333
    Downloads
    0
    Uploads
    0
    I've never seen or heard of a way. There is a way to be at the machine and send or receive prog's without ever having to be at the PC.


  3. #3
    Registered
    Join Date
    May 2004
    Location
    United Kingdom
    Posts
    8
    Downloads
    0
    Uploads
    0

    RS232 DNC communications

    At Dolphin we have ported our Communications software to run on
    handheld PDA's which support Windows platform. The PDA is connected
    to the PC via a Synchronised docking station, CNC upload/download is
    required the PDA is taken to the CNC and connected via a USB/RS232
    converter. Details available on www.dolphin.gb.com .
    Dolphin CAD CAM Ltd


  4. #4
    Registered padobranac's Avatar
    Join Date
    Mar 2006
    Location
    Croatia
    Posts
    107
    Downloads
    0
    Uploads
    0
    Quote Originally Posted by bborb View Post
    There is a way to be at the machine and send or receive prog's without ever having to be at the PC.
    Can someone explain this?
    Obviously you should have software with this feature?
    Which for example?

    BTW, sorry for bumping really old thread.
    Sorry for bad english


  • #5
    Registered dcoupar's Avatar
    Join Date
    Mar 2003
    Location
    USA
    Posts
    2516
    Downloads
    0
    Uploads
    0
    Predator DNC uses a Remote Request to initiate program transfer from the NC. The operator never has to go near the PC. Also, when the operator wants to save the program from the CNC, he/she just PUNCHes the program.


  • #6
    Registered padobranac's Avatar
    Join Date
    Mar 2006
    Location
    Croatia
    Posts
    107
    Downloads
    0
    Uploads
    0
    Quote Originally Posted by dcoupar View Post
    Predator DNC uses a Remote Request to initiate program transfer from the NC. The operator never has to go near the PC. Also, when the operator wants to save the program from the CNC, he/she just PUNCHes the program.
    PUNCHING
    Is it possible that every program that is punched will be saved in it's own file and under same name as program number is?

    READ (INPUT)
    Is there any explanation how remote request works, and what features there are?

    Is it possible that I push INPUT button just one and I send few programs (in single file or multiple files?) at a time, with one INPUT? This is not related to remote request. This is for Fanuc 0M
    Sorry for bad english


  • #7
    Registered dcoupar's Avatar
    Join Date
    Mar 2003
    Location
    USA
    Posts
    2516
    Downloads
    0
    Uploads
    0
    Quote Originally Posted by padobranac View Post
    PUNCHING
    Is it possible that every program that is punched will be saved in it's own file and under same name as program number is?

    Predator has a Remote Autoname that will automatically name the program (usually with the O number) when saving the program to the PC.

    READ (INPUT)
    Is there any explanation how remote request works, and what features there are?

    You have a Remote Request program as follows:

    %
    O8001 (PREDATOR REMOTE)
    (LOAD O1234)
    M30
    %

    The operator PUNCHes that program, then prepares the control to READ.
    After a preset delay Predator sends the requested program (in this case O1234) to the CNC.

    ---------

    Is it possible that I push INPUT button just one and I send few programs (in single file or multiple files?) at a time, with one INPUT? This is not related to remote request. This is for Fanuc 0M
    The Remote Request program can contain multiple LOAD commands:

    %
    O8001 (PREDATOR REMOTE)
    (LOAD O1234)
    (LOAD O1235)
    (LOAD O1236)
    M30
    %

    Predator will send all three programs.


  • #8
    Registered padobranac's Avatar
    Join Date
    Mar 2006
    Location
    Croatia
    Posts
    107
    Downloads
    0
    Uploads
    0
    Quote Originally Posted by dcoupar View Post
    The Remote Request program can contain multiple LOAD commands:

    %
    O8001 (PREDATOR REMOTE)
    (LOAD O1234)
    (LOAD O1235)
    (LOAD O1236)
    M30
    %

    Predator will send all three programs.
    So do I need to push INPUT button for every of these programs, or it can be done with only one INPUT push?

    That is only question that remained unanswered.

    Thank you very much for help.
    Sorry for bad english


  • #9
    Registered dcoupar's Avatar
    Join Date
    Mar 2003
    Location
    USA
    Posts
    2516
    Downloads
    0
    Uploads
    0
    Quote Originally Posted by padobranac View Post
    So do I need to push INPUT button for every of these programs, or it can be done with only one INPUT push?

    That is only question that remained unanswered.

    Thank you very much for help.
    Predator will send all the programs with one "INPUT" push. Your Fanuc control has to have parameters set to continue reading after M02, M30, or M99.


  • #10
    Registered padobranac's Avatar
    Join Date
    Mar 2006
    Location
    Croatia
    Posts
    107
    Downloads
    0
    Uploads
    0
    Quote Originally Posted by dcoupar View Post
    Predator will send all the programs with one "INPUT" push. Your Fanuc control has to have parameters set to continue reading after M02, M30, or M99.
    Yes, I found these parameters.
    If I have all program without % at begining and at end of programs, first program that is sent is lost, not recognized.

    If I have all programs with % at begining of it, transfer is terminated at begining of 2nd program (because of %).

    SO, solution is that first program does have % at begining, others not.
    Also if I put % at the end of last program that is sent, transfer will be terminated automaticaly. Otherwise I have to hit Reset button to stop transfer.

    Since now I had all my programs and subprograms in this shape, in single files:

    %
    :1234
    *
    *
    *
    M30 or M99
    %

    Is there any solution for this?
    Sorry for bad english


  • #11
    Registered dcoupar's Avatar
    Join Date
    Mar 2003
    Location
    USA
    Posts
    2516
    Downloads
    0
    Uploads
    0
    Predator can strip the % from the programs when it sends them. It also can add a % at the beginning and end of the "conversation". So even if your programs look like your example, when Predator sends them, it looks like this:

    %
    :1234(MAIN PROGRAM)
    *
    *
    *
    M30

    :1235(SUB 1)
    *
    *
    *
    M99

    :1236(SUB 2)
    *
    *
    M99
    %


  • #12
    Registered padobranac's Avatar
    Join Date
    Mar 2006
    Location
    Croatia
    Posts
    107
    Downloads
    0
    Uploads
    0
    Perfect!

    So Predator does have all features that I have been dreaming about.

    I asked for access code for timed evaluation of Predator (with NIC number) but no answer for a very long time. Why?
    Sorry for bad english


  • Page 1 of 2 12 LastLast

    Similar Threads

    1. Need Help!- Remote send/receive
      By 2hoop4inch in forum Haas Mills
      Replies: 10
      Last Post: 05-27-2009, 07:21 PM
    2. program input/output with RS232 port on Mitsubishi 50L
      By Chuck Reamer in forum Mazak, Mitsubishi, Mazatrol
      Replies: 3
      Last Post: 02-04-2008, 03:56 PM
    3. WIRELESS send & receive
      By SpeedMetal in forum Milltronics
      Replies: 1
      Last Post: 01-21-2008, 05:04 PM
    4. How do I send/receive NC Programs on Mitsubishi FX EDM
      By barnescomputer in forum General Waterjet
      Replies: 3
      Last Post: 06-15-2007, 04:30 PM
    5. looking for send program to cnc;
      By raymon in forum Machine Problems, Solutions , Wireless DNC, serial port
      Replies: 4
      Last Post: 08-22-2006, 11:35 AM

    Posting Permissions



    About CNCzone.com

      We are the largest and most active discussion forum from DIY CNC Machines to the Cad/Cam software to run them. The site is 100% free to join and use, so join today!

    Follow us on

    Facebook Dribbble RSS Feed


    Search Engine Friendly URLs by vBSEO ©2011, Crawlability, Inc.