. .

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Heath Robinson?, hey it works. Actually the ball-screw adaptation of the XY table would be an interesting write-up for anyone here looking to produce a CNC mill on the cheap.

    I guess you're manually writing the G-Code?, many/most here will use a CAM processor (e.g. CAMBam on PC) to generate the tool paths, including the decreasing Z depth, and the output from the CAM processor will be the G-Code to feed into mach3,or similar. I'd be going this route, personally.

    To answer your question - I've never tried this with Mach3 (though have done similar with LinuxCNC), you *could* (many ways to skin a cat), use a subroutine to perform your pocket operation at a single depth, and use a loop and G-Code incremental mode to create the increasing depth.

    Something like (and this will be full of errors - so use it to understand the concept, not to test, -- prefix = my comments, not valid G-Code) It's nasty, it's probably naughty but it might give you ideas. But see (a) above - look at CAM processing instead! Again, don't run this at all!!


    O0001
    G90 -- Absolute mode
    G0 X0Y0Z10 -- Move to 0,0,10mm
    M98 P02 L60 -- 60 Loops, (60 x 0.1z = 6mm) ... Z will start at 10mm and ultimately drop to 4mm safe clearance height.
    M30 -- program end



    O0002 -- subroutine to perform one pass on the pocket
    G0 X0Y0 -- reset to X=0,Y=0 - if your G-Code returns the spindle to the start position of the pocket then you don't need this, but you must be positioned to XY that's safe to plunge into the work piece
    G91 -- incremental mode
    G1 Z-10 F100 -- plunge down 10mm
    G90 -- absolute mode

    -- << do your pocket stuff here... NO Z movements!!!! >>

    G91 -- incremental mode
    G1 Z9.9 -- retract 9.9mm, the difference between this and 10mm is your plunge depth, here, 0.1mm
    G90 -- absolute mode

    M99 -- return from subroutine

  2. #2
    Thanks for the reply Doddy.
    Late now so will look at it in the morning to see what i can make of it

    John

  3. #3
    Quote Originally Posted by Doddy View Post
    Heath Robinson?, hey it works. Actually the ball-screw adaptation of the XY table would be an interesting write-up for anyone here looking to produce a CNC mill on the cheap.
    While I spend a few days (weeks) getting into Cam Bam I will put together a thread about the alterations to the compound table and my thinking in going this way.
    Will start a new thread to avoid polluting this one further and hopefully will come back to this point when Cam Bam sinks in a bit

  4. #4
    Don't be afraid to ask questions about CB if required. I don't claim to be an expert, but I've been using it to make things for a few years now.
    An optimist says the glass is half full, a pessimist says the glass is half empty, an engineer says you're using the wrong sized glass.

  5. #5
    Had a play today and managed to do a rudimentary drawing (keeping it simple ) Managed to create a toolpath and a bunch of G code on my office machine .
    Then tried to email the Gcode to my workshop machine so i could try it out on Mach 3 .
    What is the process. I can save a *.cd file . but cant seem to attach it to an email.
    Cant copy and paste cos the code is tens of pages and i cant copy all at one go. What is the best way to send a Gcode file to another machine ?

    Are there off the peg bits of code to play with while I am getting the hang of Bam Bam?

  6. #6
    Quote Originally Posted by John11668 View Post
    Had a play today and managed to do a rudimentary drawing (keeping it simple ) Managed to create a toolpath and a bunch of G code on my office machine .
    Then tried to email the Gcode to my workshop machine so i could try it out on Mach 3 .
    What is the process. I can save a *.cd file . but cant seem to attach it to an email.
    Cant copy and paste cos the code is tens of pages and i cant copy all at one go. What is the best way to send a Gcode file to another machine ?

    Are there off the peg bits of code to play with while I am getting the hang of Bam Bam?
    Hi john,

    Try rightclick zip and email.

    When it is still over 10mb orso zipped.
    Just copy it to an usb stick.

    Walk it to the machine.


    Grtz Bert.


    Verstuurd vanaf mijn SM-A505FN met Tapatalk

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. CONVERSION: Deckel maho dmu 50m cnc
    By toomast in forum Conversion Build Logs
    Replies: 7
    Last Post: 03-12-2019, 01:35 AM
  2. Where abouts is everyone based?
    By Palletlad in forum General Discussion
    Replies: 3
    Last Post: 25-01-2018, 01:29 PM
  3. Milling machine "Deckel fp2" price appraisal
    By ba99297 in forum Milling Machines, Builds & Conversions
    Replies: 2
    Last Post: 08-11-2017, 12:48 PM
  4. uk based manufacturers
    By Al25 in forum Marketplace Discussion
    Replies: 8
    Last Post: 16-01-2013, 09:23 PM
  5. Anyone with a TAIG-based mill in the Birmingham/Worcester area?
    By robinc in forum Milling Machines, Builds & Conversions
    Replies: 10
    Last Post: 03-10-2011, 10:16 PM

Bookmarks

Posting Permissions

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