Skip to content
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. My Project
  3. DIY CNC mill from mainly salvaged and 3D printed parts

DIY CNC mill from mainly salvaged and 3D printed parts

Scheduled Pinned Locked Moved My Project
76 Posts 5 Posters 11.8k Views 6 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • NeverDieN NeverDie

    @dbemowsk Do you use special software for designing the 3D printed gears? Also, what kind of material do you make them out of?

    dbemowskD Offline
    dbemowskD Offline
    dbemowsk
    wrote on last edited by
    #3

    @neverdie The software that I am using for designing the whole thing is OpenSCAD. Within OpenSCAD, I found a gear library that seems to work pretty good. Right now the parts are just printed in PLA. When I designed the front and rear frame braces, the plan was to print them with 10% infill just to test them for fit and then print them with either a slightly higher infill or solid plastic. I was surprised to find how sturdy the parts were with just that 10% infill, so I left them at that. If I find any part that isn't sturdy enough, I can re-print it with higher infill, or in ABS or PETG which are a bit stronger.

    Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
    Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

    1 Reply Last reply
    1
    • NeverDieN NeverDie

      @dbemowsk Do you use special software for designing the 3D printed gears? Also, what kind of material do you make them out of?

      dbemowskD Offline
      dbemowskD Offline
      dbemowsk
      wrote on last edited by
      #4

      @neverdie The one thing that I like about OpenScad is that it is structured like a programming language. This is how I call the module to make a gear:

         difference() {
              gear (number_of_teeth=78,
                          circular_pitch=90,
                          gear_thickness=2.5,
                          rim_thickness=4,
                          rim_width=4,
                          hub_thickness=9,
                          hub_diameter=16,
                          bore_diameter=7,
                          circles=8);
              translate([0, 19, 6]) {
                  rotate([90, 0, 0]) {
                      cylinder($fn=360, 38, d=3.15);
                  }
              }
              english_thread (diameter=5/16, threads_per_inch=18, length=0.4);
          }
      

      This produces a gear like this which even has the center part with the threads already on it so I can just thread it on to the Y axis rod.
      0_1517959204795_94362ae3-d0cc-4fdd-9e0d-970db77c07ec-image.png

      Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
      Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

      1 Reply Last reply
      3
      • dbemowskD Offline
        dbemowskD Offline
        dbemowsk
        wrote on last edited by dbemowsk
        #5

        So last night I tested the limits of my 3D printer bed. I printed a thin platter that I will mainly use as a drill guide for the MDF that I will cut today. I haven't posted anything in a while on this because I was working with a guy from work that has a metal lathe to make me a new Y axis threaded rod/lead screw. Here is a set of side by side pictures showing my OpenSCAD 3D rendering with a picture of the actual setup so far at the same angle.
        0_1518284895442_3df63842-2dd6-4365-87c0-f43bbb777a93-image.png
        0_1518284913489_c45e360b-4720-4464-b92e-674df833f3ea-image.png

        I will also be working on figuring out a set of X/Z axis uprights today. I have done a little work on an X axis motor assembly the past couple days, but it was mainly playing with some ideas. More on that later.

        Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
        Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

        1 Reply Last reply
        2
        • NeverDieN Offline
          NeverDieN Offline
          NeverDie
          Hero Member
          wrote on last edited by NeverDie
          #6

          Are you planning to build any closed-loop feedback into your design? I think the z-axis on my CNC might benefit from it, but I suppose it might require different software to take advantage of it. Perhaps there are other ways of getting the same result though.

          dbemowskD 1 Reply Last reply
          0
          • NeverDieN NeverDie

            Are you planning to build any closed-loop feedback into your design? I think the z-axis on my CNC might benefit from it, but I suppose it might require different software to take advantage of it. Perhaps there are other ways of getting the same result though.

            dbemowskD Offline
            dbemowskD Offline
            dbemowsk
            wrote on last edited by
            #7

            @neverdie What kind of closed loop feedback are you referring to? I just have the standard GRBL software on an arduino uno with a CNC shield on top. I haven't looked into everything that the board can do but there are a lot of options that I will have to figure out.
            0_1518299055530_ed443944-cf85-46dd-8166-fb4c414afdb5-image.png

            One question I have related to your CNC setup and this shield. Do you have end stop switches on both ends of your X, Y and Z axes? I noticed that there is + and - end stop switch inputs for all 3. My 3D printer only has end stops on one end of each, but maybe a CNC is different.

            Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
            Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

            1 Reply Last reply
            0
            • NeverDieN Offline
              NeverDieN Offline
              NeverDie
              Hero Member
              wrote on last edited by NeverDie
              #8

              No end stops at all.

              dbemowskD 1 Reply Last reply
              0
              • NeverDieN NeverDie

                No end stops at all.

                dbemowskD Offline
                dbemowskD Offline
                dbemowsk
                wrote on last edited by
                #9

                @neverdie I was curious too about what kind of closed loop feedback you were referring to in your earlier post.

                Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
                Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

                1 Reply Last reply
                0
                • dbemowskD Offline
                  dbemowskD Offline
                  dbemowsk
                  wrote on last edited by
                  #10

                  So I am toying with an idea for the uprights that will hold the X and Z axis. I salvaged these old DLP projector wall mount brackets and got 2 of these parts.
                  0_1518320666194_6ed50cef-9187-42e8-b025-9071c112f211-image.png
                  The idea is to have them mounted on the sides of the Y axis frame to hold the X and Z axis vertically. I guess my main issue that's leaning me away from using them is that they are quite heavy. If I do use them, I will have to design some sort of bracket that would mount them to the Y axis frame. One nice thing is that they have some holes pre-drilled at a few different levels that might help in mounting the cross rails for the X axis.
                  0_1518324588668_dcd7f401-37b8-4483-947d-5c9d2fa40d57-image.png

                  Ahhhh the dilemas of designing something from scratch....

                  Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
                  Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

                  NeverDieN 1 Reply Last reply
                  0
                  • dbemowskD dbemowsk

                    So I am toying with an idea for the uprights that will hold the X and Z axis. I salvaged these old DLP projector wall mount brackets and got 2 of these parts.
                    0_1518320666194_6ed50cef-9187-42e8-b025-9071c112f211-image.png
                    The idea is to have them mounted on the sides of the Y axis frame to hold the X and Z axis vertically. I guess my main issue that's leaning me away from using them is that they are quite heavy. If I do use them, I will have to design some sort of bracket that would mount them to the Y axis frame. One nice thing is that they have some holes pre-drilled at a few different levels that might help in mounting the cross rails for the X axis.
                    0_1518324588668_dcd7f401-37b8-4483-947d-5c9d2fa40d57-image.png

                    Ahhhh the dilemas of designing something from scratch....

                    NeverDieN Offline
                    NeverDieN Offline
                    NeverDie
                    Hero Member
                    wrote on last edited by NeverDie
                    #11

                    @dbemowsk Looks promising. The Trinus 3D printer (http://www.trinus3d.com/) went all steel on everything, and maker's muse attributed that as the reason why it could print in such fine detail.

                    As to the closed-loop versus open-loop feedback, I had written about that in the CNC PCB milling thread, but @andrew didn't think it was needed, so it probably isn't. But anyway, if you look inside, say, modern inkjet printers, they don't even use stepper motors anymore for head positioning in the x-axis. Instead, they rely on a kind of quadrature linear tape that it reads to position the head very precisely. Well, why? In the past, they used to use stepper motors for that. Is it purely a manufacturing cost saving, or did they need to go that route to get more precise control as DPI's increased?

                    So, since you're salvaging parts anyway, you could extract such linear positioning tapes from used inkjet printers (which are practically free, because people upgrade and throw out their old equipment because it's so cheap now). Just a thought....

                    https://www.youtube.com/watch?v=0QLZCfqUeg4

                    dbemowskD 1 Reply Last reply
                    0
                    • NeverDieN NeverDie

                      @dbemowsk Looks promising. The Trinus 3D printer (http://www.trinus3d.com/) went all steel on everything, and maker's muse attributed that as the reason why it could print in such fine detail.

                      As to the closed-loop versus open-loop feedback, I had written about that in the CNC PCB milling thread, but @andrew didn't think it was needed, so it probably isn't. But anyway, if you look inside, say, modern inkjet printers, they don't even use stepper motors anymore for head positioning in the x-axis. Instead, they rely on a kind of quadrature linear tape that it reads to position the head very precisely. Well, why? In the past, they used to use stepper motors for that. Is it purely a manufacturing cost saving, or did they need to go that route to get more precise control as DPI's increased?

                      So, since you're salvaging parts anyway, you could extract such linear positioning tapes from used inkjet printers (which are practically free, because people upgrade and throw out their old equipment because it's so cheap now). Just a thought....

                      https://www.youtube.com/watch?v=0QLZCfqUeg4

                      dbemowskD Offline
                      dbemowskD Offline
                      dbemowsk
                      wrote on last edited by
                      #12

                      @neverdie I get what you are going for now with the closed loop feedback. The problem in it is that I plan to use the standard GRBL firmware to run this, and if I were to go with that approach, I would probably have to modify the GRBL firmware to accommodate that as I don't think it is something native to it. If I am wrong on that, please correct me. Along with that, I don't know if I would have to make modifications to the CNC shield to do it, or if I could tone out some available pins to use for that. I don't know how encoders like that would work with steppers anyway. When steppers move one position, that equates to a certain distance based on it's direct drive, or as in my case the gear ratio. The fine encoder discs or strips used in ink jet printers may be able to be matched to the steps of the stepper, but if one step of the motor matched to a half step position on the encoder, that could throw things off slightly. I think the encoders would only be needed if the steppers were prone to missing steps, which if they are set up correctly, shouldn't. I think the steppers will be accurate enough for this application. Besides, the extra work it would take to salvage the parts and implement them into the design would be more work than I would care to take on at this point.

                      Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
                      Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

                      1 Reply Last reply
                      0
                      • dbemowskD Offline
                        dbemowskD Offline
                        dbemowsk
                        wrote on last edited by
                        #13

                        Still working on the X/Z axis uprights getting things figured out. In the mean time, I got a piece of MDF cut and fit for the work platter.
                        0_1518409956932_61f0fcc4-39ef-4bca-abee-633b7659a0f2-image.png

                        Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
                        Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

                        1 Reply Last reply
                        0
                        • bjacobseB Offline
                          bjacobseB Offline
                          bjacobse
                          wrote on last edited by
                          #14

                          Just a concern, the MDF plate could/might contains sand particles (manufactures use cheap wood materials), so don't let your expensive endmills cut down to the MDF as this will ware out the sharp endmills

                          NeverDieN 1 Reply Last reply
                          0
                          • bjacobseB bjacobse

                            Just a concern, the MDF plate could/might contains sand particles (manufactures use cheap wood materials), so don't let your expensive endmills cut down to the MDF as this will ware out the sharp endmills

                            NeverDieN Offline
                            NeverDieN Offline
                            NeverDie
                            Hero Member
                            wrote on last edited by
                            #15

                            @bjacobse What material do you recommend instead?

                            1 Reply Last reply
                            1
                            • dbemowskD Offline
                              dbemowskD Offline
                              dbemowsk
                              wrote on last edited by
                              #16

                              Trying to find a stepper that will work for the X axis is proving to be a bit troublesome. I may end up ordering one. I wish I could find a larger junk laser printer.

                              Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
                              Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

                              1 Reply Last reply
                              0
                              • dbemowskD Offline
                                dbemowskD Offline
                                dbemowsk
                                wrote on last edited by
                                #17

                                After some further review and thought, I am thinking of just getting a set of 3 motors. I figure that way I have a matched set and I am not fighting things like too slow speed on one axis that is fighting the others when milling a job. This will require some modifications to my current Y axis, but I will only have to modify the bracket on the motor side which won't be hard at all.

                                The question I have is, will these motors be good enough? They are 0.9° which is 400 steps/rev vs the somewhat standard 1.8° @200 steps/rev. They are 65 oz-in bipolar motors.
                                https://www.ebay.com/itm/3pcs-NEMA17-0-9-Stepper-Motor-65-oz-in-Robot-Reprap-Makerbot-Arduino/122627614293?hash=item1c8d2ce655:g:z1MAAOSwX9FZH06R

                                Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
                                Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

                                NeverDieN 1 Reply Last reply
                                0
                                • dbemowskD Offline
                                  dbemowskD Offline
                                  dbemowsk
                                  wrote on last edited by
                                  #18

                                  Well, haven't posted to my thread in a while so I thought I'd give an update. I am close to having the Z axis complete. Below are some pictures of the spindle assembly as I have it right now.
                                  0_1519629445785_0ea7bc4a-55ec-4531-b443-451772d05d2f-image.png
                                  0_1519629461406_66672fd9-3a0b-4388-9f7f-db5060f3ce07-image.png
                                  0_1519629494067_08d76f89-3b1b-4939-a8a0-f61498ff44c1-image.png

                                  This is the next part in line to be printed is the Z axis motor mount and X axis carriage. Below is a pic of the design. I have it printing now and there is 11 hours to go in the print. The longest printed part so far.
                                  0_1519630176063_73bcfa87-ab38-49bc-8fe6-bcb500aad10e-image.png

                                  Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
                                  Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

                                  NeverDieN 1 Reply Last reply
                                  0
                                  • dbemowskD dbemowsk

                                    After some further review and thought, I am thinking of just getting a set of 3 motors. I figure that way I have a matched set and I am not fighting things like too slow speed on one axis that is fighting the others when milling a job. This will require some modifications to my current Y axis, but I will only have to modify the bracket on the motor side which won't be hard at all.

                                    The question I have is, will these motors be good enough? They are 0.9° which is 400 steps/rev vs the somewhat standard 1.8° @200 steps/rev. They are 65 oz-in bipolar motors.
                                    https://www.ebay.com/itm/3pcs-NEMA17-0-9-Stepper-Motor-65-oz-in-Robot-Reprap-Makerbot-Arduino/122627614293?hash=item1c8d2ce655:g:z1MAAOSwX9FZH06R

                                    NeverDieN Offline
                                    NeverDieN Offline
                                    NeverDie
                                    Hero Member
                                    wrote on last edited by
                                    #19

                                    @dbemowsk said in DIY CNC mill from mainly salvaged and 3D printed parts:

                                    I figure that way I have a matched set and I am not fighting things like too slow speed on one axis that is fighting the others when milling a job.

                                    From what I've read, your GRBL controller would compensate, as it knows the speed of each motor (well, after you tell it, that is).

                                    dbemowskD 1 Reply Last reply
                                    0
                                    • NeverDieN NeverDie

                                      @dbemowsk said in DIY CNC mill from mainly salvaged and 3D printed parts:

                                      I figure that way I have a matched set and I am not fighting things like too slow speed on one axis that is fighting the others when milling a job.

                                      From what I've read, your GRBL controller would compensate, as it knows the speed of each motor (well, after you tell it, that is).

                                      dbemowskD Offline
                                      dbemowskD Offline
                                      dbemowsk
                                      wrote on last edited by
                                      #20

                                      @neverdie said in DIY CNC mill from mainly salvaged and 3D printed parts:

                                      From what I've read, your GRBL controller would compensate, as it knows the speed of each motor (well, after you tell it, that is).

                                      I figured that, but I was having trouble with a couple of the steppers that I was trying to use. Couldn't seem to get them to run reliably from the GRBL controller. The other part would have been figuring out a drive system for them as they all had geared heads. I would have had to figure out a gearing and mounting system. The motors I got were only $33 US, so basically $11/motor, so not a bad price, and I can direct couple them to the threaded rods making things easier.

                                      Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
                                      Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

                                      1 Reply Last reply
                                      0
                                      • dbemowskD Offline
                                        dbemowskD Offline
                                        dbemowsk
                                        wrote on last edited by
                                        #21

                                        So I would call today's part of the build pretty significant. I have the Z axis mostly assembled and did a drive test. Below are some pics of the assembly.
                                        0_1519793838032_d75dde6c-6708-4a79-9322-b84e3babe900-image.png
                                        0_1519793925038_58d39d2d-d5bc-4234-bc58-56bd0e688771-image.png
                                        0_1519793979809_c39e3514-2513-46e1-b54a-53b7c54a5ca8-image.png

                                        Here is the assembly taking it's first steps. It still needs some adjustment, but from what I am seeing, things should work. The next part of the build is going to be getting the uprights made that will hold the X axis rods and drive assembly. Once that is done, I should be able to do some more solid testing and calibration.
                                        https://www.youtube.com/watch?v=XR7zPx8NVN8

                                        Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
                                        Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

                                        1 Reply Last reply
                                        0
                                        • dbemowskD Offline
                                          dbemowskD Offline
                                          dbemowsk
                                          wrote on last edited by
                                          #22

                                          As some of you may have noticed, based on the earlier cad drawing, I had to make some adjustments to the large white bracket. The adjustments were there to let the spindle motor pass by the bracket. On the first attempt, the back of the spindle motor was hitting the bracket restricting travel. Also, the lower lip of the spindle motor assembly was hitting the lower part of the bracket. A few tweaks later and this was born.
                                          0_1519796458462_0896fde2-2138-4121-b63e-e4cd5d316043-image.png

                                          Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
                                          Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          20

                                          Online

                                          11.7k

                                          Users

                                          11.2k

                                          Topics

                                          113.1k

                                          Posts


                                          Copyright 2025 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • MySensors
                                          • OpenHardware.io
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular