Import Soul Wouldn’t it be nice if things just worked

8Apr/140

Homebuilt CNC – Part 2

It seems the pattern here is the first paragraph comments on how long it has been since I have written things up, my post drafts folder is filled with skeletons of posts that have never really gotten finished off, hopefully this post gets finished.

Since the last post I have finished construction of my basic CNC machine, the Z axis is complete and I make use of a dremel for the cutting head, as there are a wide variety of bits availible on ebay that will suit its 3.175mm collet.

The electronics has remained virtually the same but I have upped the power supply voltage to 24V to get a bit faster stepping speed, and broken out some more pins from the parallel port to allow "touching off" when milling PCB's.

Through poor planning I cant find any photos of the finished rig, if I come across any I will insert them here.

What I can talk about are the tools I have been using for the generation and execution of G-Code, with a few project photos thrown in.

Running the G-Code

Since the end of the last post I have swapped from using Mach3 to LinuxCNC partially because I was only running a trial version of Mach3 and Linux CNC is free, partially because I was getting sick of looking at the interface in Mach3.

Setup was pretty straightfoward, download the live CD, try it out, hit install. Linux CNC even comes with a neat helper tool to allow easy setup and tuning of stepper motor based machine.

User Interface of LinuxCNC

The software has been pretty easy to use, and provides a good set of basic functionality, it is however missing all of the little "wizards" that Mach3 had for generation of short jobs like "cut a pocket this size in this location" or "drill this pattern of holes".

Generating G-Code

I have been using two tools to generate G-Code. F-Engrave a free python program for generating V-Carving toolpaths, and the trial version of cambam, software for the setup of more complex jobs, as well as limited cad functionality.

F-Engrave

F-Engrave Homepage

One problem with milling something with a rotating cutter is that you will always end up with rounded corners in the holes of pockets and cutouts as you are cutting with a circular bit. There are many different solutions that people use to try and counter this. The most common approaches are. Use a CNC machine with more axes, so it is able to cut from a different angle to remove the remaining material, however this is expensive, and beyond what can be knocked up with plywood at home. Over-cut corners, if you need to be able to fit a square bit object into a milled pocket, you can overcut and take out extra materials at the corners to leave a pocket a square object will fit into.

Some of the different ways you can over cut a corner, this is sometimes called dog-boning because of the shape it causes.

Another option is to reduce the radius of the cutter, the smaller the cutter you use the less rounded and more sharp the inside of a pocket is, the trade-off being the strength of the cutter and how many passes you need to remove the material from the inside of the shape. Which brings us to the last option which is to use a V shaped cutter and some fancy software to be able to use a virtual 0 diameter cutter to get very sharp corners. How it works is by using a V shaped cutter and ramping it towards the surface as you near a corner, producing a finer and finer corner as you reach the surface of the material, while this is not suitable for everything, i.e. fitting a square block into a hole, it works great for tasks like signs.

I used F-engrave to produce a number of items like this including some labels and vinyl stamps.

First ever runs of the machine with the dremel, had not got all the settings and tuning quite worked out.

Some vinyl stamps, vinyl was epoxied down to some pine, F-engrave was used to mill the stamp and Cambam to do the cutout work, you can see the play in the mechanical setup of the machine where multiple passes were made to get through the wood.

Cambam

Cambam homepage

Cambam is a software package that allows the creation of tool paths from DXF files, it also has and inbuilt editor for editing geometry or creating simple designs. Its a pretty handy program and I think I will end up buying the full version when I run out of trial time.

Engraving the name on a plaque, I created the geometry and toolpath using cambam.

Due to a combination of camera and computer issues this is more or less the only pictures/video I have of the more or less finished machine

Lid of a box I engraved for a scout activity

I had a bit of an issue with the bit getting clogged with warm plastic when the holes where milled.

Visolate

Visolate Homepage

A handy little tool for reducing the amount of milling needed to create PCBs instead of milling precisely around each trace it mills one line between each signal, much faster to mill but produces some off looking tracks.

Showing the original traces (thick) and the lines to be milled (thin)

For the first go ever milling a board I had a few depth issues as well as plowing though my hold-down brackets, at least they are only acrylic. After this step the board gets milled to its final shape. I even had reasonable success with milling a double sided board.

And that's about it for this project, due to moving houses the setup has been packed away into storage and wont be seen again for months. Overall it was a pretty neat little setup that cost next to nothing, the only money that really went into the project was for the stepper driver boards and a range of end mills, all of which can be procured fairly cheaply from ebay. Everything else was scavenged and jumbled together until this was the result.

Only a slight gap between now and the last post.

28May/130

Homebuilt CNC – Part 1

Not much content around here in a while but this will be a small series on the journey I took learning about CNC and constructing my own CNC machine out of mainly stuff I had lying around or was able to scavenge.

Way back in year 11 I brought home two tops off the top of school desks, thinking the plywood with a hard resin(?) surface would make a great base for a CNC machine. Some decent size stepper motors were scavenged from a few old dot matrix printers to drive the axes (printers by the way are home to all manner of handy little electro-mechanical bits that come in handy with projects) and Polulu A4983 Stepper drivers were purchased to drive the stepper motors.

A basic XY table was set up using just the tabletops, and stepper motors were set up with some 3/16" threaded rod to shit the axes. A few little Arduino test scripts were created, to shift it backwards and forwards and then all progress stopped as I wasn't quite sure how to go about doing the software side of things to turn plans into commands, the project got shelved and sat gathering dust behind the lounge for the better part of 3 years.

So after a year of uni and a cadet ship the machine was rediscovered during a clean up and over the next few months slowly evolved into what is probably one of the coolest things I have ever built.

Googling around revealed that pretty much all hobby cnc mills or 3d printers are run over a parallel port which is able to be more or less used as time accurate IO leaving you with a relatively beefy processor to run "g-code". G-code at its most simple is a series of instructions on how the machine should move around and how it should move there. You then need some software to parse this and give the machine itself the commands. For testing I downloaded the trial version of Mach3 allowing me to run 500 lines of G-code. Mach3 is a program that parses G-code and sends out pulses on the different pins of the parallel port, that you hook up to the "step" and "direction" lines on stepper drivers allowing for very little in the way of required electrics or programming on my part.

This leaves you with another problem, how to generate the g-code for Mach3 to run as it really wouldn't be much fun to write anything but the most basic jobs by hand.  There are all sorts of methods you can use to turn designs into g-code but for my very first tests I used this neat script to generate some patterns. With some more plywood framework screwed down to the base as the beginnings of a z axis a pen was taped on, and here are the results.

It was slightly wobbly, had a big blotch from where the pen stopped, but it mostly worked and it felt awesome.

Next part coming soon (Hopefully).

14Oct/110

Interactive Donation Box – Behind the scenes

This is a follow up article to explain the inner working of my interactive donation box if you don't have a clue what this is see my other post HERE. Besides all the visible track elements who's operation is clearly visible there are a number of hidden aspects of the machine.

The main part of this is the mechanism for sorting and counting coins (See video below). For this i used a mechanical system of sorting the coins based upon their size. I had originally used this system in a money box that sorted coins into different trays, and knew of a few things that would greatly improve its performance. Firstly to make the back rest out of some kind of plastic material so that its finish will remain much more constant than with wood which gradually changed over time as the finish was absorbed or rubbed off, the other improvement to be made was to use rectangular holes for the coins to fall though instead of circular holes, this just allows the coins longer to fall though their holes, making it virtually impossible for them to miss their hole.

A coin sorting money box that i made for a junior D&T course

After the creation of this video i made a few change to the sorter to improved it's reliability, mainly replacing the front guide that stops coins jumping off their tracks with a stiffer version to stop 20c coins sometimes escaping off the front.

To detect the coins after they had been sorted i decided upon using a beam break system as this would mean i could reliably detect the coins even without having to worry about if the coins were heavy enough to set off a micro-switch. So i simply have a row of leds on one side of the slots the coins fall though after being sorted and a row of Light dependent resistors on the other, these are hooked up to analog in pins on the arduino controlling the system.

After a coin has been detected the program is quite simple, a certain value is added to the counter depending on what coin has been inserted, the lift i turned on whenever this value is non-zero and the counter is decremented whenever a marble passes a micro-switch hidden within one of the lift guides.

There are only a few things that i would like to do in the future, the main being to reclaim my arduino out of the back of the display, probably replacing it with a MSP430 chip as these are very cheap (under a dollar) meaning i could reclaim my arduino for future projects.

Edit: If you are interested on more details on the construction of this project i have now made my portfolio available HERE.

28Sep/111

Interactive Donation Box

Well it was right down to the line but i managed to get my Design and Technology project finished and ready for marking, just... I only had confirmation that all the parts of the project played nicely together after rapidly programming it and getting to put coins into it for the first time at 3AM on the morning it was due. After a quick dash to office works at 7AM i was ready at school to hand my project in on time at 9AM.

Even though the projects design had to be greatly modified from its original 3 window design a I am really happy with how well the project has turned out and with all of the really positive responses I have got from other students and teachers. Without any more words here is the project.

Just in-case you haven't read my previous posts from way back about what the donation box actually is, here is a quick summary.

When somebody puts a coin into the machine it is sorted by currency and depending on the value of the coin a certain number of marbles are sent though a marble run (i decided on the rate of 1 marble per 10c). The idea of the project is that if it is made more interesting for people to donate then people are much more likely to make a contribution.

To better display this here is a video of the project in action

Also thanks to MWandel of woodgears.ca for his gear template generator and general articles on marble machines that made me pick this as a project

After i finish up with UNI preferences and scholarship applications i will hopefully have some more info up on what goes on behind the project

Edit: I now have another post up detailing some of the inner workings of the project HERE

Edit: If you are interested on more details on the construction of this project i have now made my portfolio available HERE.

21Apr/111

Marble run plans complete

Well after lots of screwing around in Autodesk Inventor I finally have the final plan drawn up for the marble run portion of the machine.

I have also made a major change to my expected overall design, making it a much flatter design, making for simpler parts and less supports needed.

I started just doing one small portion of the mechanism i decided to call the dripper because it "drips" marbles, from this i also had a go at running dynamic simulations and managed to run and test the "dripper" and render a video of how it went.

More recently I have also rendered an image of the whole setup (without the cabinet, pivots ect) and can be found HERE (my thumbnail generator is not working properly)

I have printed out templates for all of the pieces and plan on cutting these out as MDF templates some time next week.