Results 1 to 7 of 7

Thread: DIY CNC Router

  1. #1

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,710

    DIY CNC Router

    I needed a CNC machine but dont have the $10,000+ for even a small one so I stumbled across this DIY article and got re-motivated. I figured before that I may be able to make a manual "CNC" but that wouldnt suffice with my time savings and automation needs.




    Goal: automate the routing of desired logos or shapes both positive and negative to create a "puzzle" of pieces that fit precisely together out of different materials. They will then be epoxied and in-laid together. The end result will be, for ex, a board in one color/material with a business logo in-laid in another color/material.






    I was thinking of something like this one better but a dremel may not be the best router for the job because the material being cut will be wood, sheet metal, fiberglass and carbon fiber. A carbide or diamond tipped bit will be required and high rpms. In the above video the movement seems a bit choppy?






    Todos:
    1. determine the best board (arduino, netduino, etc) that satisfies all requirements.
    2. cutting tool: dremel or router?
      • needs to be mounted precisely and repeatedly for when servicing needs to be performed it can be remounted accurately.
    3. size of largest job to be cut: 2' x 4'
      • may make it larger to be able to cut multiples on a single sheet without reloading
    4. needs dust collection
    5. figure out how to convert or design the templates in the required format(s)
      • image logos and text converted into "cnc" instructions

    *More to be added as the project evolves

    Any input or suggestions are welcomed.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  2. #2
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: DIY CNC Router

    CVMichael might know!
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  3. #3
    Still learning kebo's Avatar
    Join Date
    Apr 2004
    Location
    Gardnerville,nv
    Posts
    3,757

    Re: DIY CNC Router

    I would think an Arduino would have plenty of horse power for this, but I'm not sure if it would have enough memory. That really depends on how large the cutout patterns are though. I suppose you could send the steps to the Arduino from a PC as needed too That would help memory consumption. If you do use an Arduino I would suggest using use a Mega. The video shows a Uno, but I would better a project like this would push an Uno's memory limits. I've had 2 of these running for a couple of months now 27/7 without issue. If you do use the Arduino make sure you download the VMirco addon for Visual Studio.

    As far as the cutting tool goes, use the smallest/lightest thing you can. The heavier it is, the biggest stepper motors you'll need and the bigger driver you will need for them. I don't have any stepper motor drives, so I can't help much with that.

    Looks like a fun project.
    GL
    kevin
    Process control doesn't give you good quality, it gives you consistent quality.
    Good quality comes from consistently doing the right things.

    Vague general questions have vague general answers.
    A $100 donation is required for me to help you if you PM me asking for help. Instructions for donating to one of our local charities will be provided.

    ______________________________
    Last edited by kebo : Now. Reason: superfluous typo's

  4. #4
    PowerPoster
    Join Date
    Feb 2002
    Location
    Canada, Toronto
    Posts
    5,802

    Re: DIY CNC Router

    Hi, I just saw this thread

    What do you have so far? The video and first image I see it is from the DIY article, what about the second image? is that what you built?

    When I made my CNC, I did not know anything about G code, I wrote my own C code on a microcontroller, and I made a VB.NET app that was sending coordinates to the microcontroller where to move. The main reason why I stopped working on my CNC was because I did not know how to create my designs, and convert them to the coordinates to for my custom made .NET app.

    Now it's a different story, since I got my 3D printer I learned quite a lot, and I would like to take my CNC out of the locker room (it's been gathering dust for a few years). But I still have the problem with space (everything is in my living room). I really have to move to a bigger place (more rooms)! I would really like to have a basement for myself

    Regarding to your To-do's:

    Quote Originally Posted by RobDog888 View Post
    Todos:
    1. determine the best board (arduino, netduino, etc) that satisfies all requirements.
    2. cutting tool: dremel or router?
      • needs to be mounted precisely and repeatedly for when servicing needs to be performed it can be remounted accurately.
    3. size of largest job to be cut: 2' x 4'
      • may make it larger to be able to cut multiples on a single sheet without reloading
    4. needs dust collection
    5. figure out how to convert or design the templates in the required format(s)
      • image logos and text converted into "cnc" instructions

    *More to be added as the project evolves

    Any input or suggestions are welcomed. [/color]
    I think Arduino is fine... What you need is an interface from Arduino to a MiniSD card. This way, you can write your G file(s) to the MiniSD, and have the Arduino execute the instructions in the file. Since the code on the Arduino is static, you don't have to worry about memory space. My 3D printer works exactly the same way as a CNC, in fact, I could remove the Extruder from it, and put a dremel, and voalla, now I have a mini CNC... (the only problem is that the 3D printer is made for speed, not strength (it has belts connected to stepper motors, instead of threaded rods). Someone already has done it on the same 3D printer I have: https://www.youtube.com/watch?v=0N_2GW-jZ2k

    For my 3D Printer I am using "Marlin", source code is free/open source. It's made for 3D printing, but at the same time it's just a G-code interpreter... so I don't see why it can't be used for a CNC... if you search on google for "arduino gcode interpreter", you should be able to find other source code specific for CNC.

    As for cutting tool, it would be nice if you could mount a router, hopefully the frame is strong enough. As for "servicing needs to be performed it can be remounted accurately", I can't think of a way to do that without calibrating every time.
    Normally, when you change drill bit, you have to recalibrate the Z axis by using a touch probe, or you connect one wire to the drill bit with an alligator clip, and the other wire to a small piece of metal on the bed of the CNC. Then move the router (X & Y) on top of the metal plate, and slowly move the Z position down, until the drill bit touches the metal plate. The 2 wires can be connected to the Arduino for an automatic adjustment (if the software can do it), or for manual the 2 wires goes to a beeper, and move the z axis by hand. The X & Y position you have to zero depending on how your material is set on the bed, so that is manual work also (or again with a touch probe if you have one).
    Check this: https://www.youtube.com/watch?v=GCtYIT86WOU


    For:
    figure out how to convert or design the templates in the required format(s)
    [LIST][*]image logos and text converted into "cnc" instructions
    What format are your designs?

    When I made this: https://www.youtube.com/watch?v=m2CYttY_xPg
    I took an image of mickey mouse from a google search, something like this. In Corel Draw, I set the image as the background, then manually I draw lines (1 pixel wide) on the outline of mickey mouse. When I removed the background image, I was left with the drawing as line objects in Corel Draw. It is important to have the lines as 1 pixel!
    Then I exported the image to Bitmap. I wrote a VB app that opened the bitmap as an array. I wrote a recursive function to search for a black pixel (whatever line color), when found record position as X & Y, make the pixel same color as background, then call itself with (X+1, Y) & (X, Y+1)... etc to find all the other pixels in that line. Then repeat for other lines. In between lines, I made the Z go up, move to new position, then go back down. I stored the positions in a binary array, and sent that binary data to the microcontroller on the CNC using a COM port. Using this method you can even generate G code by the way.
    Last edited by CVMichael; Jul 8th, 2016 at 01:47 PM.

  5. #5
    PowerPoster SJWhiteley's Avatar
    Join Date
    Feb 2009
    Location
    South of the Mason-Dixon Line
    Posts
    2,256

    Re: DIY CNC Router

    I've been thinking about this for a while. I think the difficult thing is the mechanics - you can always code and re-code the controller

    I intend to use 80/20 aluminum framing material. I've used it for a few projects, and while not cheap, isn't too expensive, either (unless you make a mistake in design...). It is kind of designed for this kind of thing, and has linear bearings and wot-not for just this kind of work. Has the rigidity to hold a full blown router, too.
    "Ok, my response to that is pending a Google search" - Bucky Katt.
    "There are two types of people in the world: Those who can extrapolate from incomplete data sets." - Unk.
    "Before you can 'think outside the box' you need to understand where the box is."

  6. #6
    Frenzied Member
    Join Date
    Jun 2015
    Posts
    1,042

    Re: DIY CNC Router

    [...]
    Last edited by dz32; Apr 26th, 2019 at 12:01 PM.

  7. #7
    PowerPoster
    Join Date
    Feb 2002
    Location
    Canada, Toronto
    Posts
    5,802

    Re: DIY CNC Router

    How's your progress on your CNC ?

    My CNC was in the locker room for a few years, now it's back I removed all the electronics, left only the motors. I am using an Arduino MEGA, with a RAMPS 1.4 shield. This is for a 3D printer, but I made a few changes in the code to make it work for my CNC. Instead of the motor drivers that RAMPS 1.4 comes, I connected to more powerful stepper drivers. I am using the "D42" from here: http://www.motiontek.ca/StepperDriver.html , they can give 4.2 Amps to the motors.

    I also bought a 1.25 HP router that I plan to mount on my CNC. I will use my 3D printer to make a mount that will fit on my CNC. Now I have to get some End Mill bits.

    The reason why I really want to get my CNC to work again is because I want to make a Filament Splicer similar to this: https://www.youtube.com/watch?v=uecY5ikWdCI
    The part that joins the filaments needs to heat up, so I have to make it from aluminum.

    Anyways... I am curious how your CNC is going

Posting Permissions

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



Click Here to Expand Forum to Full Width