Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Turning on an air nozzle with program

  1. #1
    Join Date
    Oct 2017
    Posts
    21

    Default Turning on an air nozzle with program

    I have a PRSAlpha 48x96 just a year old.

    Is there an output on the PCB that would allow for turning on an accessory, i.e. air hose or motor?

    How would I go about adding that to a Tool Path file?

    jerry

  2. #2
    Join Date
    Sep 2006
    Location
    Garland Tx
    Posts
    2,334

    Default

    Jerry…

    The quick answer to your question is “yes” you can do exactly what you’re wanting to do!

    There are several inputs and outputs available, and if there aren’t enough for what you’re wanting to do, you can buy an expansion board! I’m not familiar with new machines but in the past, the interfaces on the board were TTL level, meaning you’d need relays to handle real world voltage and current levels.

    Programming is super easy! The command SO (switch operate) followed by parameters… i.e. 5,1 where 5 is the switch # and 1 is on (0 for off). You could add this command to your post processor if desired, manually edit a program or click on the graphical interface in the SB3 program.
    Call ShopBot, they can give you any pertinent info for your model.

    I’m on the road and unable to give you links to the programming manual, but with a little hunting you will find it!

    SG

  3. #3
    Join Date
    Oct 2017
    Posts
    21

    Default

    Quote Originally Posted by steve_g View Post
    Jerry…

    [FONT=arial]You could add this command to your post processor if desired,
    SG
    Hi Steve_G: I'd be using this on a tool path with a hundred slots so having the commands added automatically would be handy. I have very little programming experience and so far my attempts to alter ShopBot programs has been a total failure but I have altered Cut Path files OK and know that inserting a hundred on and off commands would be tedious. Can you maybe steer me to a tutorial or explain how I would add this to the Post Processor?

    Thank you,
    jerry

  4. #4
    Join Date
    Jan 2004
    Location
    iBILD Solutions - Southern NJ
    Posts
    7,986

    Default

    Everything you need to know is in the Vectric Post Processor Guide You will have to think about WHEN you want it turned on or off.

    Hardware-wise you will need a relay board to trigger whatever electro-pneumatic valve you have. Direct 5v TTL voltage on the board to the device is a no-no.

    I think I might have a good, never used SB relay board on the shelf I can sell you for less than a new one. If interested PM me and I will look.

    This is a good read and does what you are looking to do (turning a switch on/off). The post processor for that is here - Just download it and see how it was done for yourself.

    FYI - All it's doing is turning an Output On (1) or Off (0) :: SO,5,1 means Set Output number 5 to 1/ON This means that you need to have your physical #5 Output on the control board wired to your relay board and your valve on the other side of the relay. You'll also need a common ground between the boards...


    -B
    High Definition 3D Laser Scanning Services - Advanced ShopBot CNC Training and Consultation - Vectric Custom Video Training IBILD.com

  5. #5
    Join Date
    Sep 2006
    Location
    Garland Tx
    Posts
    2,334

    Default

    Brady...
    Thanks for chimeing in! I'm having horrible to no internet in Yellowstone!
    SG

  6. #6
    Join Date
    Oct 2017
    Posts
    21

    Default

    Related question:

    The PP the you linked for the Laser only has the word "laser" in 3 places 2 in notes at the beginning and once in the footer to turn it off. Not sure what I'm supposed to make of that, don't see how it can work.

    Suppose I add the command variables to the Post Processor to turn on/off coolant. If there's nothing coming out of VcarvePro to activate that code, how will it be entered into the final Toolpath file?

    IF the setting doesn't exist in Vcarve Pro. THEN how will the necessary information be communicated to the Post Processor so it will be included in the Toolpath file?

    Therefore I assume code will have to be generated entirely within the PP itself. I would need to add "something" in the PP say when Z axis goes negative, Output x turns on (1) and when Z axis pulls up Output x turns off (0). Perhaps add IF/THEN statements to the FEED_MOVE or Z position somehow. How? What would that look like?

  7. #7
    Join Date
    Jan 2004
    Location
    iBILD Solutions - Southern NJ
    Posts
    7,986

    Default

    After taking a closer look at the JPL PP, you either need to slightly modify the JPL PP to work with your router (add Z commands & Router commands to PP) or modify your PP to turn the coolant on/off with the output commands. My previous post was just meant to push you in the right direction...with you doing all the heavy lifting (reading, understanding & writing your post...)

    There's enough info to do this yourself with the links I've provided. However, I get that messing with post processors isn't everyone's cup of tea. If you need a quote on writing a custom PP for your application that does exactly what you need and works, send me an email.

    -B
    High Definition 3D Laser Scanning Services - Advanced ShopBot CNC Training and Consultation - Vectric Custom Video Training IBILD.com

  8. #8
    Join Date
    Oct 2017
    Posts
    21

    Default

    I would happily mess with it IF it were understandable but I'm not seeing a clear instruction. ShopBot Support says: "The post processors for VCarve can be found in C:\ProgramData\Vectric\VCarve Pro - ShopBot Edition\V9.0\PostP
    the SO (set output) command is what you need (SO,#,# - Set Output # to 1-On 0-Off)" But a search for the terms "SO" or "set output" produce no relevant results in the PP or in the editing guide so I'm left dangling.

    I asked one of our programmers to look at it but he's swamped.

    I would have to submit a request to purchasing for you to write a custom PP. How much would you charge for this?

    Jerry

  9. #9
    Join Date
    Jan 2004
    Location
    iBILD Solutions - Southern NJ
    Posts
    7,986

    Default

    Jerry,
    Check with Steven.

    -B
    High Definition 3D Laser Scanning Services - Advanced ShopBot CNC Training and Consultation - Vectric Custom Video Training IBILD.com

  10. #10
    Join Date
    Sep 2007
    Location
    Vectric Ltd., Alcester
    Posts
    32

    Default

    Hello Jerry,

    I would need to add "something" in the PP say when Z axis goes negative, Output x turns on (1) and when Z axis pulls up Output x turns off (0).
    To do this within a Vectric post processor, you would need to add the "PLUNGE_MOVE" and "RETRACT_MOVE" sections to the post processor.

    For details please check the Vectric Post Processor Guide (available from the "Help" menu item of the main menu bar of the application).
    The
    "PLUNGE_MOVE" and "RETRACT_MOVE" sections are detailed in the section of the guide titled "Other less frequently used sections".

    For the example that you have mentioned, if using output 5 as Brady mentioned in his example, you would need to add something like:

    + ---------------------------------------------------
    + Commands output for Retract Moves
    + ---------------------------------------------------
    begin PLUNGE_MOVE


    "SO,5,1"




    + ---------------------------------------------------
    + Commands output for Retract Moves
    + ---------------------------------------------------
    begin RETRACT_MOVE


    "SO,5,0"

    Plus any other commands as required for each operation.

    I hope that this helps.

Tags for this Thread

Posting Permissions

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