I’m working on a CNC project - etching a Cafe sign from oak. My router did a great job on the etching and cutting, now I’m working on next steps - sanding & cleaning it up, and thinking on how to color the product.
My main question for this post is a Dremel question - how can I attach the fluffy white felt/cotton attachment? It’s got a tiny hole, and I could not figure out which of my Dremel-provided attachments could grip it.
I used this nice sander bit, which I’ll admit - I really enjoy, and found relaxing & cathartic to use. I like a smooth, friendly slightly curved edge - and this allowed me to manually smooth edges.
Are the letters so small that it requires a 1/16 inch endmills? Or did you choose that to get into the small areas? You could use a larger endmill to remove the bulk and then run a profile finishing pass with the smaller one.
I chose that bit because (1) the small details in the lower letters, (2) I haven’t learned the workflow yet for multi-tool changes using Kiri:Moto.
I’m investing time learning to use FreeCAD - once I have confidence there (specifically: Import SVG text, etch it, cut a shape), I’ll be thinking of how to separate the job operations. Do people usually just have separate G-code files, and run them in sequence - changing bits? I believe that I saw a job organizer in UGS.
Yes, separate gcode files. Unlike 3D printing where homing the machine is part of the normal gcode sequence, CNC assumes you take responsibility for homing when appropriate. This is part of what makes separate gcode files a workable option here.
Here’s @stewart describing non-automatic tool changes on Kiri:Moto:
Similarly, FreeCAD Path Workbench has a “Split Output” option in the output tab. Tool change - FreeCAD Forum
Here’s my recipe:
Move Z to a safe height
Home XY
Move to or within the origin-most corner of your stock, set work coordinate zeros
Set Z height with first tool at fixed location (e.g. G0 X0 Y0 as long as you have enough surface there to set height against)
Run first gcode file
Go to same fixed X, Y location, change tool, set Z height in the same way
Do not re-home X and Y; that’s not sufficiently repeatable.
Leave enough roughing margin that if you disturb X and Y, a re-home in X and Y will probably work. (Unlikely on screw machines; on belt machines you have to be careful when tightening the collet not to force steppers over a step.)
Run second gcode file
Rinse, repeat
You can test this cutting air, with bits removed for safety, to make sure you are comfortable with the workflow.